Documentation correction: absint(), props mdawaffe, fixes #9079

git-svn-id: https://develop.svn.wordpress.org/trunk@10540 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Ozz 2009-02-10 21:17:44 +00:00
parent 072d563198
commit b3baf2224a
1 changed files with 3 additions and 3 deletions

View File

@ -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 ) );