diff options
author | Rich Hickey <richhickey@gmail.com> | 2008-03-22 16:07:03 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2008-03-22 16:07:03 +0000 |
commit | f99b85789d1a5f2d78231c3da03627bfe8ac0b5b (patch) | |
tree | 16a3de321e6627279371fdde9e1b13d04e9b9d36 /src | |
parent | 2cda4c02477c587d429c94efc861b2e0a481aa48 (diff) |
fixed send, send-off docs
Diffstat (limited to 'src')
-rw-r--r-- | src/boot.clj | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/boot.clj b/src/boot.clj index ae925870..62de5ae2 100644 --- a/src/boot.clj +++ b/src/boot.clj @@ -838,8 +838,8 @@ (defn send "Dispatch an action to an agent. Returns the agent immediately. - Subsequently, in a thread in a thread pool, the state of the will be - set to the value of: + Subsequently, in a thread from a thread pool, the state of the agent + will be set to the value of: (apply action-fn state-of-agent args)" [#^clojure.lang.Agent a f & args] @@ -848,7 +848,7 @@ (defn send-off "Dispatch a potentially blocking action to an agent. Returns the agent immediately. Subsequently, in a separate thread, the state of - the will be set to the value of: + the agent will be set to the value of: (apply action-fn state-of-agent args)" [#^clojure.lang.Agent a f & args] |