From: Aaron Crane Date: Mon, 15 Dec 2008 11:13:17 +0000 (+0000) Subject: Typo in pod/perlfunc.pod X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=ca8d723e9504508322389fed1274da4bbaed2dfb;p=p5sagit%2Fp5-mst-13.2.git Typo in pod/perlfunc.pod Message-ID: <20081215111317.GI7480@aaroncrane.co.uk> p4raw-id: //depot/perl@35101 --- diff --git a/pod/perlfunc.pod b/pod/perlfunc.pod index 65e019b..82a80de 100644 --- a/pod/perlfunc.pod +++ b/pod/perlfunc.pod @@ -7309,7 +7309,7 @@ X Behaves like the wait(2) system call on your system: it waits for a child process to terminate and returns the pid of the deceased process, or C<-1> if there are no child processes. The status is returned in C<$?> -and C<{^CHILD_ERROR_NATIVE}>. +and C<${^CHILD_ERROR_NATIVE}>. Note that a return value of C<-1> could mean that child processes are being automatically reaped, as described in L. @@ -7319,7 +7319,7 @@ X Waits for a particular child process to terminate and returns the pid of the deceased process, or C<-1> if there is no such child process. On some systems, a value of 0 indicates that there are processes still running. -The status is returned in C<$?> and C<{^CHILD_ERROR_NATIVE}>. If you say +The status is returned in C<$?> and C<${^CHILD_ERROR_NATIVE}>. If you say use POSIX ":sys_wait_h"; #...