Skip to content

Commit

Permalink
Fix ; in models sample code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
RSLi committed Jan 22, 2017
1 parent 42224fc commit 450c461
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs-src/models.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ models.js implementation
todoApp.models = {
"data": {
"todolist": [{"task": "Sample Task 1", "done": false}, {"task": "Sample Task 2", "done": false}];
"todolist": [{"task": "Sample Task 1", "done": false}, {"task": "Sample Task 2", "done": false}]
},
"todo": {
Expand Down
2 changes: 1 addition & 1 deletion docs-src/structure.rst
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ model.js
todoApp.models = {
"data": {
"todolist": [{"task": "Sample Task 1", "done": false}, {"task": "Sample Task 2", "done": false}];
"todolist": [{"task": "Sample Task 1", "done": false}, {"task": "Sample Task 2", "done": false}]
},
"todo": {
Expand Down

0 comments on commit 450c461

Please sign in to comment.