Fix typo in Backbone.Collection documentation

This commit is contained in:
Pablo Alonso García
2011-11-22 10:54:44 +01:00
parent fa96a37e2f
commit 9cbf87e9c4

View File

@@ -1025,8 +1025,8 @@ bill.set({name : "Bill Jones"});
<h2 id="Collection">Backbone.Collection</h2>
<p>
Collections are ordered sets of models. You can to bind <tt>"change"</tt> events
to be notified when any model in the collection has been modified,
Collections are ordered sets of models. You can bind <tt>"change"</tt> events
to a collection so it gets notified when any of its models has been modified,
listen for <tt>"add"</tt> and <tt>"remove"</tt> events, <tt>fetch</tt>
the collection from the server, and use a full suite of
<a href="#Collection-Underscore-Methods">Underscore.js methods</a>.