From a83d5bc34d5570aa7a7a4478f6ca92171cfcea0d Mon Sep 17 00:00:00 2001 From: Christophe Grand Date: Thu, 3 Sep 2015 13:18:48 +0200 Subject: [PATCH] doc tweak --- src/net/cgrand/xforms.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/net/cgrand/xforms.clj b/src/net/cgrand/xforms.clj index 7b68606..6080168 100644 --- a/src/net/cgrand/xforms.clj +++ b/src/net/cgrand/xforms.clj @@ -67,7 +67,7 @@ It applies the transform specified by xform to each partition. Partitions contain the \"value part\" (as returned by vfn) of each item. The resulting transformed items are wrapped back into a \"pair\" using the pair function. - Default values for kfn, vfn and pair are first, second and vector." + Default values for kfn, vfn and pair are first, second (or identity if kfn is specified) and vector." ([xform] (by-key key' val' vector xform)) ([kfn xform] (by-key kfn identity vector xform)) ([kfn vfn xform] (by-key kfn vfn vector xform))