diff options
author | Rich Hickey <richhickey@gmail.com> | 2009-01-06 20:21:08 +0000 |
---|---|---|
committer | Rich Hickey <richhickey@gmail.com> | 2009-01-06 20:21:08 +0000 |
commit | 02157fa9f0ce9a9b7ce3df38312498ffe600632e (patch) | |
tree | 149445875140555203d2237412b80278932f040c /src/clj | |
parent | 467568d55ae4f099106107a56dd249fec8c41f5e (diff) |
fixed comments, patch from Chouser
Diffstat (limited to 'src/clj')
-rw-r--r-- | src/clj/clojure/core.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clj/clojure/core.clj b/src/clj/clojure/core.clj index 235c5f7f..ebf415cd 100644 --- a/src/clj/clojure/core.clj +++ b/src/clj/clojure/core.clj @@ -381,7 +381,7 @@ (spread (cons item more))) (defmacro delay - "Takes a body of expressions and yields a Delay object than will + "Takes a body of expressions and yields a Delay object that will invoke the body only the first time it is forced (with force), and will cache the result and return it on all subsequent force calls" [& body] |