Commit 025d1845 authored by Frederik Ring's avatar Frederik Ring Committed by Sam Saccone

fix name of localStorage namespace in comment

comment was using `todos` whereas the code is using `todos-react-backbone` - i opted for a non-breakable comment instead
parent 854f02ee
......@@ -13,7 +13,7 @@ var app = app || {};
// Reference to this collection's model.
model: app.Todo,
// Save all of the todo items under the `"todos"` namespace.
// Save all of the todo items under this example's namespace.
localStorage: new Backbone.LocalStorage('todos-backbone'),
// Filter down the list of all todo items that are finished.
......
......@@ -11,7 +11,7 @@ define([
// Reference to this collection's model.
model: Todo,
// Save all of the todo items under the `"todos"` namespace.
// Save all of the todo items under this example's namespace.
localStorage: new Store('todos-backbone'),
// Filter down the list of all todo items that are finished.
......
......@@ -13,7 +13,7 @@ var app = app || {};
// Reference to this collection's model.
model: app.Todo,
// Save all of the todo items under the `"todos"` namespace.
// Save all of the todo items under this example's namespace.
localStorage: new Backbone.LocalStorage('todos-react-backbone'),
// Filter down the list of all todo items that are finished.
......
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