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

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

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;

View File

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

View File

@@ -2018,7 +2018,7 @@ _.size({ 'one': 1, 'two': 2, 'three': 3 });
// => 3
_.size('pebbles');
// => 5
// => 7
```
* * *

View File

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