Fix _.size doc typo. [ci skip] [closes #394]

This commit is contained in:
John-David Dalton
2013-11-12 08:59:40 -08:00
parent 8153f97899
commit 37ccc80ba4
5 changed files with 5 additions and 5 deletions

View File

@@ -2666,7 +2666,7 @@
* // => 3
*
* _.size('pebbles');
* // => 5
* // => 7
*/
function size(collection) {
var length = collection ? collection.length : 0;