Doc fix for close of pipe handle
authorChip Salzenberg <chip@perl.com>
Thu, 24 Apr 1997 16:55:38 +0000 (04:55 +1200)
committerChip Salzenberg <chip@atlantic.net>
Sat, 26 Apr 1997 12:00:00 +0000 (00:00 +1200)
pod/perlfunc.pod

index 913f6f8..a99dffe 100644 (file)
@@ -2020,12 +2020,13 @@ The following pairs are more or less equivalent:
 
 See L<perlipc/"Safe Pipe Opens"> for more examples of this.
 
-Explicitly closing any piped filehandle causes the parent process to
-wait for the child to finish, and returns the status value in C<$?>.
-Note: on any operation which may do a fork, unflushed buffers remain
+NOTE: On any operation which may do a fork, unflushed buffers remain
 unflushed in both processes, which means you may need to set C<$|> to
 avoid duplicate output.
 
+Closing any piped filehandle causes the parent process to wait for the
+child to finish, and returns the status value in C<$?>.
+
 Using the constructor from the IO::Handle package (or one of its
 subclasses, such as IO::File or IO::Socket),
 you can generate anonymous filehandles which have the scope of whatever