Fix language

This commit is contained in:
Dan Holmsand 2015-12-21 09:10:39 +01:00
parent a8be359882
commit 2e568c9876
1 changed files with 6 additions and 5 deletions

View File

@ -264,8 +264,9 @@
[:p "The same thing could of course be achieved with React [:p "The same thing could of course be achieved with React
lifecycle methods, but that would be a lot more verbose."] lifecycle methods, but that would be a lot more verbose."]
[:p [:code "with-let"] " can also be combined with " [:code "track"] ". For [:p [:code "with-let"]" can also be combined
example, the component above could also be written as: "] with "[:code "track"]" (and other reactive contexts). For
example, the component above could be written as: "]
[demo-component {:comp tracked-pos [demo-component {:comp tracked-pos
:src (s/src-of [:mouse-pos :src (s/src-of [:mouse-pos
@ -313,7 +314,7 @@
[:p "The actual event handling is done [:p "The actual event handling is done
in "[:code "event-handler"]", which takes state and event as in "[:code "event-handler"]", which takes state and event as
parameters, and returns a new state (events are represented by parameters, and returns a new state (events are represented by
vectors, with an event name in the first position)."] vectors here, with an event name in the first position)."]
[:p "All the UI components have to do is then just to return [:p "All the UI components have to do is then just to return
some markup, and set up routing of events through the dispatch some markup, and set up routing of events through the dispatch
@ -336,8 +337,8 @@
itself dispatches a new event (that would result in lost itself dispatches a new event (that would result in lost
events, and much confusion)."] events, and much confusion)."]
[:p "For a more structured version of this approach, see the [:p "For a more structured version of a similar approach, see
excellent "[:a the excellent "[:a
{:href "https://github.com/Day8/re-frame"} "re-frame"]" {:href "https://github.com/Day8/re-frame"} "re-frame"]"
framework."]] framework."]]