From 0422678643374a8d883b02b1cb6b7c85ee392dcb Mon Sep 17 00:00:00 2001 From: Christophe Grand Date: Thu, 5 Jan 2017 15:38:40 +0100 Subject: [PATCH] fix typo in docstring --- src/net/cgrand/xforms.cljc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/cgrand/xforms.cljc b/src/net/cgrand/xforms.cljc index 19a4546..1de85a0 100644 --- a/src/net/cgrand/xforms.cljc +++ b/src/net/cgrand/xforms.cljc @@ -331,7 +331,7 @@ acc)))))))) (defn reductions - "Transient version of reductions. There's a difference in behavior when init is not provided: (f) is used. + "Transducer version of reductions. There's a difference in behavior when init is not provided: (f) is used. So x/reductions works like x/reduce or transduce, not like reduce and reductions when no init and 1-item input." ([f] (reductions f (f))) ([f init]