Fix typo in _.contains docs. [ci skip] [closes #393]

This commit is contained in:
John-David Dalton
2013-11-07 19:04:56 -08:00
parent a034515019
commit a6bc40b506
2 changed files with 87 additions and 87 deletions

View File

@@ -3233,7 +3233,7 @@
* _.contains({ 'name': 'fred', 'age': 40 }, 'fred');
* // => true
*
* _.contains('pebbles', 'ur');
* _.contains('pebbles', 'eb');
* // => true
*/
function contains(collection, target, fromIndex) {