Need to free the isa lookup hash before rebuilding it.
[p5sagit/p5-mst-13.2.git] / pod / perlipc.pod
index f0722f7..3e916a0 100644 (file)
@@ -581,7 +581,7 @@ you opened whatever your kid writes to his STDOUT.
        open (FILE, "> /safe/file")
            || die "can't open /safe/file: $!";
        while (<STDIN>) {
-           print FILE; # child's STDIN is parent's KID
+           print FILE; # child's STDIN is parent's KID_TO_WRITE
        }
        exit;  # don't forget this
     }