diff --git a/index.html b/index.html index 95b786316..32babe334 100644 --- a/index.html +++ b/index.html @@ -1368,8 +1368,7 @@ _.map([1, 2, 3], function(n){ return n * 2; }); _([1, 2, 3]).map(function(n){ return n * 2; });
- Using the object-oriented style allows you to chain together methods. Calling
- chain on a wrapped object will cause all future method calls to
+ Calling chain on a wrapped object will cause all future method calls to
return wrapped objects as well. When you've finished the computation,
use value to retrieve the final value. Here's an example of chaining
together a map/flatten/reduce, in order to get the word count of
@@ -1520,7 +1519,8 @@ _([1, 2, 3]).value();
1.2.4 — Jan. 4, 2012