Fix doc typo for _.toPairsIn. [closes #2314]

This commit is contained in:
John-David Dalton
2016-05-07 10:06:45 -07:00
parent 47d024ae7b
commit def9f5d84a

View File

@@ -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);