diff options
author | Peter Martini <PeterCMartini@GMail.com> | 2011-11-25 18:23:53 -0500 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-11-27 11:04:28 -0800 |
commit | b18b5ffd55f9b6862bf6acaeb9ce12727a79b79a (patch) | |
tree | 806c0228de29eb15aac04d42f6548aec814a2ff4 /pod/perlipc.pod | |
parent | 2db7c483adfe796023e6b117428d28c725186f04 (diff) | |
download | perl-b18b5ffd55f9b6862bf6acaeb9ce12727a79b79a.tar.gz |
Change a semicolon to a colon. This is necessary for the shared mem example to compile
Diffstat (limited to 'pod/perlipc.pod')
-rw-r--r-- | pod/perlipc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlipc.pod b/pod/perlipc.pod index 6709827a08..76508388fe 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -1687,7 +1687,7 @@ Here's a small example showing shared memory usage. print "read : '$buff'\n"; # the buffer of shmread is zero-character end-padded. - substr($buff, index($buff, "\0")) = "": + substr($buff, index($buff, "\0")) = ""; print "un" unless $buff eq $message; print "swell\n"; |