From 6c0e456a5eaf9f6a1feea4a07ce0888625ff2121 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Wed, 11 Nov 2015 23:24:58 -0800 Subject: [PATCH] Description cleanup for Math methods. [ci skip] --- lodash.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lodash.js b/lodash.js index 3223961f1..3bdbf4f1c 100644 --- a/lodash.js +++ b/lodash.js @@ -13238,7 +13238,7 @@ } /** - * Calculates `number` rounded up to `precision`. + * Computes `number` rounded up to `precision`. * * @static * @memberOf _ @@ -13260,7 +13260,7 @@ var ceil = createRound('ceil'); /** - * Calculates `number` rounded down to `precision`. + * Computes `number` rounded down to `precision`. * * @static * @memberOf _ @@ -13282,7 +13282,7 @@ var floor = createRound('floor'); /** - * Gets the maximum value of `array`. If `array` is empty or falsey + * Computes the maximum value of `array`. If `array` is empty or falsey * `undefined` is returned. * * @static @@ -13336,7 +13336,7 @@ } /** - * Computes the mean value of an `array`. + * Computes the mean of the values in `array`. * * @static * @memberOf _ @@ -13353,7 +13353,7 @@ } /** - * Gets the minimum value of `array`. If `array` is empty or falsey + * Computes the minimum value of `array`. If `array` is empty or falsey * `undefined` is returned. * * @static @@ -13407,7 +13407,7 @@ } /** - * Calculates `number` rounded to `precision`. + * Computes `number` rounded to `precision`. * * @static * @memberOf _ @@ -13454,7 +13454,7 @@ } /** - * Gets the sum of the values in `array`. + * Computes the sum of the values in `array`. * * @static * @memberOf _