add missed ')' in code example for Domino 5

add missed ')' in code example for Domino 5
This commit is contained in:
antonshwab 2017-05-19 22:01:49 +03:00 committed by GitHub
parent cf61b2db1d
commit 56e17bce85
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ for the now-deleted item, obviously, but otherwise the same DOM as last time.
(defn items-view
[]
(let [items (subscribe [:query-items])] ;; source items from app state
[:div (map item-render @items])) ;; assume item-render already written
[:div (map item-render @items)])) ;; assume item-render already written
```
Notice how `items` is "sourced" from "app state" via `subscribe`.