From a30c42054b7cc78fefdcf79fd7213a4a8a2053a0 Mon Sep 17 00:00:00 2001 From: Juraj Martinka Date: Tue, 31 Jan 2017 14:58:05 +0100 Subject: [PATCH] Fix typos in todomvc application --- examples/todomvc/README.md | 2 +- examples/todomvc/src/todomvc/db.cljs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/todomvc/README.md b/examples/todomvc/README.md index c3bfeff..767c1e5 100644 --- a/examples/todomvc/README.md +++ b/examples/todomvc/README.md @@ -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 diff --git a/examples/todomvc/src/todomvc/db.cljs b/examples/todomvc/src/todomvc/db.cljs index e7bdb72..56d1b66 100644 --- a/examples/todomvc/src/todomvc/db.cljs +++ b/examples/todomvc/src/todomvc/db.cljs @@ -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])" ;;