summaryrefslogtreecommitdiff
path: root/pod/modpods/Cwd.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/modpods/Cwd.pod')
-rw-r--r--pod/modpods/Cwd.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/modpods/Cwd.pod b/pod/modpods/Cwd.pod
index ac4e24f74d..042db8112e 100644
--- a/pod/modpods/Cwd.pod
+++ b/pod/modpods/Cwd.pod
@@ -5,10 +5,10 @@ getcwd - get pathname of current working directory
=head1 SYNOPSIS
require Cwd;
- $dir = Cwd::getcwd()'
+ $dir = Cwd::getcwd();
use Cwd;
- $dir = getcwd()'
+ $dir = getcwd();
use Cwd 'chdir';
chdir "/tmp";