Change 20668 by [EMAIL PROTECTED] on 2003/08/12 20:27:41

        perlipc thinko by John P. Linderman.

Affected files ...

... //depot/perl/pod/perlipc.pod#51 edit

Differences ...

==== //depot/perl/pod/perlipc.pod#51 (text) ====
Index: perl/pod/perlipc.pod
--- perl/pod/perlipc.pod#50~20607~      Sun Aug 10 13:44:23 2003
+++ perl/pod/perlipc.pod        Tue Aug 12 13:27:41 2003
@@ -105,9 +105,9 @@
 When directed at a process whose UID is not identical to that
 of the sending process, signal number zero may fail because
 you lack permission to send the signal, even though the process is alive.
-You may be able to determine the cause of failure using C<$!>.
+You may be able to determine the cause of failure using C<%!>.
 
-    unless (kill 0 => $pid or $! == $!{EPERM}) {
+    unless (kill 0 => $pid or $!{EPERM}) {
        warn "$pid looks dead";
     }
 
End of Patch.

Reply via email to