One more typo, reported by H.Merijn Brand
authorAbigail <abigail@abigail.be>
Tue, 9 Nov 2010 15:47:11 +0000 (16:47 +0100)
committerAbigail <abigail@abigail.be>
Tue, 9 Nov 2010 15:47:11 +0000 (16:47 +0100)
pod/perlipc.pod

index bd0db2e..8aa5005 100644 (file)
@@ -573,7 +573,7 @@ output doesn't wind up on the user's terminal.
         open(STDIN,  "< /dev/null")     || die "can't read /dev/null: $!";
         open(STDOUT, "> /dev/null")     || die "can't write to /dev/null: $!";
         defined(my $pid = fork())       || die "can't fork: $!";
-        exit if $pid;                   # non-zero now means I am the paren 
+        exit if $pid;                   # non-zero now means I am the parent
         (setsid() != -1)                || die "Can't start a new session: $!" 
         open(STDERR, ">&STDOUT")        || die "can't dup stdout: $!";
     }