From 901e3dcff261554d600f8567fd246ce47d91c599 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 8 May 2016 16:50:38 -0700 Subject: [PATCH] Flip "n" and "index" in `_.nth` and `_.nthArg` docs. [ci skip] --- lodash.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lodash.js b/lodash.js index 4bcb6ca88..fe9e41e6a 100644 --- a/lodash.js +++ b/lodash.js @@ -6849,7 +6849,7 @@ } /** - * Gets the element at `n` index of `array`. If `n` is negative, the nth + * Gets the element at index `n` of `array`. If `n` is negative, the nth * element from the end is returned. * * @static @@ -14978,7 +14978,7 @@ } /** - * Creates a function that gets the argument at `n` index. If `n` is negative, + * Creates a function that gets the argument at index `n`. If `n` is negative, * the nth argument from the end is returned. * * @static