p4raw-id: //depot/perl@16753
This is functionally identical to Perl's builtin C<sleep()> function
for suspending the execution of the current for process for certain
number of seconds, see L<perlfunc/sleep>. There is one signifanct
-difference, however: C<POSIX::sleep()> returns the number or
+difference, however: C<POSIX::sleep()> returns the number of
B<unslept> seconds, while the C<CORE::sleep()> returns the
number of slept seconds.
=item *
POSIX::sleep() now returns the number of I<unslept> seconds
-(as thex POSIX standard says), as opposed to CORE::sleep() which
+(as the POSIX standard says), as opposed to CORE::sleep() which
returns the number of slept seconds.
=item *