File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -61,15 +61,15 @@ var MyTodo = Backbone.Model.extend({
61
61
62
62
### fetch()
63
63
In a collection with the ` firebase ` property defined, calling ` fetch ` will
64
- retrieve data from Firebase update the collection with its contents.
64
+ retrieve data from Firebase and update the collection with its contents.
65
65
66
66
``` js
67
67
TodoList .fetch ();
68
68
```
69
69
70
70
### sync()
71
71
In a collection with the ` firebase ` property defined, calling ` sync ` will
72
- set the contents of the local collection to the specifeid Firebase location.
72
+ set the contents of the local collection to the specified Firebase location.
73
73
74
74
``` js
75
75
TodoList .sync ();
@@ -152,7 +152,7 @@ Messages.remove(someModel);
152
152
```
153
153
154
154
### create(value)
155
- Cretes and adds a new model to the collection. The newly created model is
155
+ Creates and adds a new model to the collection. The newly created model is
156
156
returned, along with a ` id ` property (uniquely generated by Firebase).
157
157
158
158
``` js
You can’t perform that action at this time.
0 commit comments