summaryrefslogtreecommitdiff
path: root/src/parallel.clj
diff options
context:
space:
mode:
authorRich Hickey <richhickey@gmail.com>2008-06-27 00:59:21 +0000
committerRich Hickey <richhickey@gmail.com>2008-06-27 00:59:21 +0000
commitcda1fcb67d0b9c5b68c460e46876a9ac617e6b94 (patch)
treeb38b9b2e04bbb72fca89ade515fea7123a19e559 /src/parallel.clj
parent0cac41cec6a0e3b33cfc3115b1bdee84aaf0407a (diff)
fixed reduce w/init
fixed doc on pmin
Diffstat (limited to 'src/parallel.clj')
-rw-r--r--src/parallel.clj2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parallel.clj b/src/parallel.clj
index bc9d5a9a..58fed289 100644
--- a/src/parallel.clj
+++ b/src/parallel.clj
@@ -145,7 +145,7 @@ pvec.
([coll comp] (. (par coll) max comp)))
(defn pmin
- "Returns the maximum element, presuming Comparable elements, unless
+ "Returns the minimum element, presuming Comparable elements, unless
a Comparator comp is supplied"
([coll] (. (par coll) min))
([coll comp] (. (par coll) min comp)))