From bfe833c13231e22e0a40f781410e6c7fac801fb2 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 4 Jan 2015 14:35:26 -0600 Subject: [PATCH] Tweak `_.drop`, `_.dropRight`, `_.take`, & `_.takeRight` doc examples. [ci skip] --- lodash.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lodash.js b/lodash.js index 1901b0f01..d295cd8b5 100644 --- a/lodash.js +++ b/lodash.js @@ -4142,7 +4142,7 @@ * @returns {Array} Returns the slice of `array`. * @example * - * _.drop([1, 2, 3], 1); + * _.drop([1, 2, 3]); * // => [2, 3] * * _.drop([1, 2, 3], 2); @@ -4174,7 +4174,7 @@ * @returns {Array} Returns the slice of `array`. * @example * - * _.dropRight([1, 2, 3], 1); + * _.dropRight([1, 2, 3]); * // => [1, 2] * * _.dropRight([1, 2, 3], 2); @@ -4931,7 +4931,7 @@ * @returns {Array} Returns the slice of `array`. * @example * - * _.take([1, 2, 3], 1); + * _.take([1, 2, 3]); * // => [1] * * _.take([1, 2, 3], 2); @@ -4963,7 +4963,7 @@ * @returns {Array} Returns the slice of `array`. * @example * - * _.takeRight([1, 2, 3], 1); + * _.takeRight([1, 2, 3]); * // => [3] * * _.takeRight([1, 2, 3], 2);