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

2
dist/lodash.js vendored
View File

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