File tree 1 file changed +5
-4
lines changed
1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
Cursors
2
2
==============
3
3
4
- Cursors can be seen as a kind of * pointers * to a particular part of an
5
- atom, which behaving exactly like a normal atom. This means that you
4
+ Cursors can be seen as a kind of * pointer * to a particular part of an
5
+ atom, which behaves exactly like a normal atom. This means that you
6
6
use the same functions you would on an atom (` reset! ` , ` swap! ` ,
7
7
` deref ` , ` add-watch ` , etc) but affect only the part you are interested
8
8
in.
@@ -42,7 +42,7 @@ Add `[reagent/reagent-cursor "0.1.2"]` to `:dependencies` in `project.clj`.
42
42
43
43
In your Reagent application ` (:require [reagent.cursor :as rc]) ` .
44
44
45
- There is two main functions available to create cursors: ` cursor ` and ` cur ` .
45
+ There are two main functions available to create cursors: ` cursor ` and ` cur ` .
46
46
47
47
## cursor
48
48
@@ -77,7 +77,8 @@ arguments (the atom and a path), but is guaranteed to return a
77
77
cursor.
78
78
79
79
Note that the atom argument is placed on the left, allowing
80
- you to use a threading macro.
80
+ you to use a thread-first macro (` cursor ` requires a thread-last
81
+ macro).
81
82
82
83
``` clj
83
84
You can’t perform that action at this time.
0 commit comments