From def9f5d84af52a53b9f774017e141d67ec7babb3 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sat, 7 May 2016 10:06:45 -0700 Subject: [PATCH] Fix doc typo for `_.toPairsIn`. [closes #2314] --- lodash.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lodash.js b/lodash.js index 858b792e3..1ca558afd 100644 --- a/lodash.js +++ b/lodash.js @@ -13004,7 +13004,7 @@ * Foo.prototype.c = 3; * * _.toPairsIn(new Foo); - * // => [['a', 1], ['b', 2], ['c', 1]] (iteration order is not guaranteed) + * // => [['a', 1], ['b', 2], ['c', 3]] (iteration order is not guaranteed) */ var toPairsIn = createToPairs(keysIn);