diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-15 09:45:51 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1999-10-15 09:45:51 +0000 |
commit | f5daac4a641c782ba897f4a064c1a6f1035697b0 (patch) | |
tree | ea22754b8cc41206ea97155d3e24167265e04af6 /pod/perlopentut.pod | |
parent | a7089531ba6cec0dc577ea527da80d08bb5964dd (diff) | |
download | perl-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.pod | 2 |
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: |