=item sleep
-This is 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>.
+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
+B<unslept> seconds, while the C<CORE::sleep()> returns the
+number of slept seconds.
=item sprintf
=item *
+POSIX::sleep() now returns the number of I<unslept> seconds
+(as thex POSIX standard says), as opposed to CORE::sleep() which
+returns the number of slept seconds.
+
+=item *
+
The printf() and sprintf() now support parameter reordering using the
C<%\d+\$> and C<*\d+\$> syntaxes. For example