Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Agents.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Interacting with an agent is very similar to using atoms. If we wanted to repres
And changing the account holder:

~~~clojure
(send! checking-account (comp #(assoc % :holder "your-name")))
(send checking-account assoc :holder "your-name")
~~~

***
Expand Down
2 changes: 1 addition & 1 deletion Atoms.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ If we wanted to represent what we know about Sansa Stark as an atom:
And changing her martial status:

~~~clojure
(swap! checking-account (comp #(assoc % :holder "your-name")))
(swap! checking-account assoc :holder "your-name")
~~~

***
Expand Down