fixing typo.

This commit is contained in:
Jeremy Ashkenas
2011-12-05 11:45:03 -05:00
parent ed4826ca19
commit 3df51e7004

View File

@@ -385,7 +385,7 @@
return (n != null) && !guard ? slice.call(array, 0, n) : array[0];
};
// Returns everything but the last entry of the array. Especcialy useful on
// Returns everything but the last entry of the array. Especially useful on
// the arguments object. Passing **n** will return all the values in
// the array, excluding the last N. The **guard** check allows it to work with
// `_.map`.