Description cleanup for Math methods. [ci skip]

This commit is contained in:
John-David Dalton
2015-11-11 23:24:58 -08:00
parent ebb993b862
commit 6c0e456a5e

View File

@@ -13238,7 +13238,7 @@
} }
/** /**
* Calculates `number` rounded up to `precision`. * Computes `number` rounded up to `precision`.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -13260,7 +13260,7 @@
var ceil = createRound('ceil'); var ceil = createRound('ceil');
/** /**
* Calculates `number` rounded down to `precision`. * Computes `number` rounded down to `precision`.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -13282,7 +13282,7 @@
var floor = createRound('floor'); 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. * `undefined` is returned.
* *
* @static * @static
@@ -13336,7 +13336,7 @@
} }
/** /**
* Computes the mean value of an `array`. * Computes the mean of the values in `array`.
* *
* @static * @static
* @memberOf _ * @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. * `undefined` is returned.
* *
* @static * @static
@@ -13407,7 +13407,7 @@
} }
/** /**
* Calculates `number` rounded to `precision`. * Computes `number` rounded to `precision`.
* *
* @static * @static
* @memberOf _ * @memberOf _
@@ -13454,7 +13454,7 @@
} }
/** /**
* Gets the sum of the values in `array`. * Computes the sum of the values in `array`.
* *
* @static * @static
* @memberOf _ * @memberOf _