Fix _.indexOf doc example typo. [closes #986] [ci skip]

This commit is contained in:
jdalton
2015-02-21 01:05:45 -08:00
parent 0e7bef9014
commit a910884e7d

View File

@@ -4699,7 +4699,7 @@
* @example
*
* _.indexOf([1, 2, 1, 2], 2);
* // => 2
* // => 1
*
* // using `fromIndex`
* _.indexOf([1, 2, 1, 2], 2, 2);