Subject: | Minor doc bug: assert_nonnegative_integer() |
Description for assert_nonnegative_integer has incorrect example:
assert_nonnegative_integer( -14 ); # pass
should probably be
assert_nonnegative_integer( 14 ); # pass
assert_nonnegative_integer( -14 ); # FAIL
The example does indeed assert failure, so it isn't just me confused
(like usually).
I scanned the rest of the examples and didn't see any others. (tho the
worth of that is not asserted...)