summaryrefslogtreecommitdiff
path: root/pod/perlopentut.pod
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1999-10-15 09:45:51 +0000
committerGurusamy Sarathy <gsar@cpan.org>1999-10-15 09:45:51 +0000
commitf5daac4a641c782ba897f4a064c1a6f1035697b0 (patch)
treeea22754b8cc41206ea97155d3e24167265e04af6 /pod/perlopentut.pod
parenta7089531ba6cec0dc577ea527da80d08bb5964dd (diff)
downloadperl-f5daac4a641c782ba897f4a064c1a6f1035697b0.tar.gz
lvalue subs patch (change#4081) breaks C<\(Foo->Bar())>;
avoid tickling it in Pod::Man for now; other nits in Pod::* p4raw-link: @4081 on //depot/perl: cd06dffe59d60ee6a2fdd7c81f8cef42c7026b36 p4raw-id: //depot/perl@4390
Diffstat (limited to 'pod/perlopentut.pod')
-rw-r--r--pod/perlopentut.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlopentut.pod b/pod/perlopentut.pod
index ae622a6e41..dbb3a0bd83 100644
--- a/pod/perlopentut.pod
+++ b/pod/perlopentut.pod
@@ -84,7 +84,7 @@ C<popen> function. But in the shell, you just use a different redirection
character. That's also the case for Perl. The C<open> call
remains the same--just its argument differs.
-If the leading character is a pipe symbol, C<open) starts up a new
+If the leading character is a pipe symbol, C<open> starts up a new
command and open a write-only filehandle leading into that command.
This lets you write into that handle and have what you write show up on
that command's standard input. For example: