From b3baf2224a40bca0e750c2ed093ba344e2224dbd Mon Sep 17 00:00:00 2001 From: Andrew Ozz Date: Tue, 10 Feb 2009 21:17:44 +0000 Subject: [PATCH] Documentation correction: absint(), props mdawaffe, fixes #9079 git-svn-id: https://develop.svn.wordpress.org/trunk@10540 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 602e5b7485..92bd7b0a24 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 ) );