From 48d47bee3236a7ae384d58167c2d61426819a71a Mon Sep 17 00:00:00 2001 From: azaozz Date: Tue, 10 Feb 2009 21:17:44 +0000 Subject: [PATCH] Documentation correction: absint(), props mdawaffe, fixes #9079 git-svn-id: http://svn.automattic.com/wordpress/trunk@10540 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index 602e5b748..92bd7b0a2 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -2658,12 +2658,12 @@ function dead_db() { } /** - * Converts value to positive integer. + * Converts value to nonnegative integer. * * @since 2.5.0 * - * @param mixed $maybeint Data you wish to have convered to an absolute integer - * @return int An absolute integer + * @param mixed $maybeint Data you wish to have convered to an nonnegative integer + * @return int An nonnegative integer */ function absint( $maybeint ) { return abs( intval( $maybeint ) );