diff options
author | Uģis Ozols <ugis.ozolss@gmail.com> | 2012-11-06 13:23:36 +0200 |
---|---|---|
committer | Uģis Ozols <ugis.ozolss@gmail.com> | 2012-11-06 13:23:36 +0200 |
commit | 540cf3b51a06ad66f86399ae1f0b6f38ce2246c0 (patch) | |
tree | d66476c645b4cd271f9021d541cc7469ca2c78c3 | |
parent | 5deef956c65c284892cd19e96cfbfed8c7e84531 (diff) | |
download | backbonetutorials-540cf3b51a06ad66f86399ae1f0b6f38ce2246c0.zip backbonetutorials-540cf3b51a06ad66f86399ae1f0b6f38ce2246c0.tar.gz backbonetutorials-540cf3b51a06ad66f86399ae1f0b6f38ce2246c0.tar.bz2 |
Remove extra 'send'.
-rw-r--r-- | _posts/2011-01-29-what-is-a-model.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_posts/2011-01-29-what-is-a-model.md b/_posts/2011-01-29-what-is-a-model.md index c917980..560fa57 100644 --- a/_posts/2011-01-29-what-is-a-model.md +++ b/_posts/2011-01-29-what-is-a-model.md @@ -165,7 +165,7 @@ Our model definition shall thus look like; ### Creating a new model -If we wish to create a new user on the server then we will instantiate a new UserModel and call `save`. If the `id` attribute of the model is `null`, Backbone.js will send send of POST request to the server to the urlRoot. +If we wish to create a new user on the server then we will instantiate a new UserModel and call `save`. If the `id` attribute of the model is `null`, Backbone.js will send of POST request to the server to the urlRoot. {% highlight javascript %} var UserModel = Backbone.Model.extend({ |