Commit e7744bd8 authored by Aaron Boushley's avatar Aaron Boushley

Had a floating semi-colon, fixed it.

parent a514894f
...@@ -113,7 +113,6 @@ Todos.TodoStore = (function () { ...@@ -113,7 +113,6 @@ Todos.TodoStore = (function () {
// Update a model by replacing its copy in `this.data`. // Update a model by replacing its copy in `this.data`.
this.update = function(model) { this.update = function(model) {
this.data[model.get('id')] = model.getProperties('id', 'title', 'isDone'); this.data[model.get('id')] = model.getProperties('id', 'title', 'isDone');
;
this.save(); this.save();
return model; return model;
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment