diff --git a/src/lang/number.js b/src/lang/number.js index 3c4a0aa..6825b84 100644 --- a/src/lang/number.js +++ b/src/lang/number.js @@ -70,7 +70,8 @@ Object.extend(Number.prototype, (function() { /** * Number#abs() -> Number * - * Returns the absolute value of the number. + * Returns the absolute value of the number. Convenience method that simply + * calls `Math.abs` on this instance and returns the result. **/ function abs() { return Math.abs(this);