Fix typos in todomvc application

This commit is contained in:
Juraj Martinka 2017-01-31 14:58:05 +01:00
parent 5ab43c93d8
commit a30c42054b
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ src
├── db.cljs <--- data related (data layer)
├── subs.cljs <--- subscription handlers (query layer)
├── views.cljs <--- reagent components (view layer)
└── handlers.cljs <--- event handlers (control/update layer)
└── events.cljs <--- event handlers (control/update layer)
```
## Notes

View File

@ -37,7 +37,7 @@
;; -- Default app-db Value ---------------------------------------------------
;;
;; When the application first starts, this will be the value put in app-db
;; Unless, or course, there are todos in the LocalStore (see further below)
;; Unless, of course, there are todos in the LocalStore (see further below)
;; Look in `core.cljs` for "(dispatch-sync [:initialise-db])"
;;