diff options
author | jkeenan <jkeenan@cpan.org> | 2011-11-19 19:49:10 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-22 16:27:19 -0800 |
commit | ccf3535a69b62ee351d1e9c562b51d76202e3583 (patch) | |
tree | ebcda029d78528e9aea25b5d815425a466657d31 /pod/perlipc.pod | |
parent | e3ec0a15dbdf8b555fb77b085eadf4ff9fba04a6 (diff) | |
download | perl-ccf3535a69b62ee351d1e9c562b51d76202e3583.tar.gz |
[RT #36079] Convert ` to '.
Diffstat (limited to 'pod/perlipc.pod')
-rw-r--r-- | pod/perlipc.pod | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pod/perlipc.pod b/pod/perlipc.pod index c064f2a0ec..6709827a08 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -826,7 +826,7 @@ reopen the appropriate handles to STDIN and STDOUT and call other processes. close PARENT_WTR; print CHILD_WTR "Parent Pid $$ is sending this\n"; chomp($line = <CHILD_RDR>); - print "Parent Pid $$ just read this: `$line'\n"; + print "Parent Pid $$ just read this: '$line'\n"; close CHILD_RDR; close CHILD_WTR; waitpid($pid, 0); } else { @@ -834,7 +834,7 @@ reopen the appropriate handles to STDIN and STDOUT and call other processes. close CHILD_RDR; close CHILD_WTR; chomp($line = <PARENT_RDR>); - print "Child Pid $$ just read this: `$line'\n"; + print "Child Pid $$ just read this: '$line'\n"; print PARENT_WTR "Child Pid $$ is sending this\n"; close PARENT_RDR; close PARENT_WTR; @@ -864,7 +864,7 @@ have the socketpair() system call, it will do this all for you. close PARENT; print CHILD "Parent Pid $$ is sending this\n"; chomp($line = <CHILD>); - print "Parent Pid $$ just read this: `$line'\n"; + print "Parent Pid $$ just read this: '$line'\n"; close CHILD; waitpid($pid, 0); } else { |