diff options
author | Chouser <chouser@n01se.net> | 2009-07-31 22:18:24 -0400 |
---|---|---|
committer | Chouser <chouser@n01se.net> | 2009-07-31 22:18:24 -0400 |
commit | da640a5d9371d6e436b3dfaab36fde90fad2c2bd (patch) | |
tree | 7697b52447683bf8b2bf3a2c64eacb3b01c8d6d7 | |
parent | acbd2097ddfbe5db48b486b6b706bdb59d412a69 (diff) |
seq-utils: Fix fill-queue attribution
-rw-r--r-- | src/clojure/contrib/seq_utils.clj | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/clojure/contrib/seq_utils.clj b/src/clojure/contrib/seq_utils.clj index 46069fa6..d4c29c46 100644 --- a/src/clojure/contrib/seq_utils.clj +++ b/src/clojure/contrib/seq_utils.clj @@ -174,7 +174,8 @@ [pred coll] (first (filter pred coll))) -; based on work related to seque. blame Chouser +; based on work related to Rich Hickey's seque. +; blame Chouser for anything broken or ugly. (defn fill-queue "filler-func will be called in another thread with a single arg 'fill'. filler-func may call fill repeatedly with one arg each |