From 47d024ae7b80ae990ebd9ecd07539c5949451b4e Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 7 May 2016 06:54:26 -0700 Subject: [PATCH] Use "index" instead of "nth". [closes #2313] [ci skip] --- lodash.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lodash.js b/lodash.js index 49f424f7f..858b792e3 100644 --- a/lodash.js +++ b/lodash.js @@ -6849,8 +6849,8 @@ } /** - * Gets the nth element of `array`. If `n` is negative, the nth element - * from the end is returned. + * Gets the element at `n` index of `array`. If `n` is negative, the nth + * element from the end is returned. * * @static * @memberOf _ @@ -14978,7 +14978,7 @@ } /** - * Creates a function that returns its nth argument. If `n` is negative, + * Creates a function that gets the argument at `n` index. If `n` is negative, * the nth argument from the end is returned. * * @static