Skip to content

Commit

Permalink
Trivial documentation tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
colinnewell committed Mar 7, 2011
1 parent 28995fd commit ff5eca8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Child.pm
Expand Up @@ -105,10 +105,10 @@ signal to the parent as well as the child.
.... ....
# exit() is called for you at the end. # exit() is called for you at the end.
}); });
my $proc = $child->start my $proc = $child->start;
# Kill the child if it is not done # Kill the child if it is not done
$proc->complete || $proc->kill(9); $proc->is_complete || $proc->kill(9);
$proc->wait; #blocking $proc->wait; #blocking
Expand Down

0 comments on commit ff5eca8

Please sign in to comment.