From 49c749b74e83c3c3d9495e717389805da60b3ce1 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Tue, 12 Jan 2016 15:40:37 -0500 Subject: [PATCH] fix typo in comment --- src/clj/com/rpl/specter.cljx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/com/rpl/specter.cljx b/src/clj/com/rpl/specter.cljx index 1b799fd..99d5a73 100644 --- a/src/clj/com/rpl/specter.cljx +++ b/src/clj/com/rpl/specter.cljx @@ -122,7 +122,7 @@ The transform-fn in this case is expected to return [ret user-ret]. ret is what's used to transform the data structure, while user-ret will be added to the user-ret sequence in the final return. replace-in is useful for situations where you need to know the specific values - of what was transformd in the data structure." + of what was transformed in the data structure." [selector transform-fn structure & {:keys [merge-fn] :or {merge-fn concat}}] (compiled-replace-in (i/comp-paths* selector) transform-fn structure :merge-fn merge-fn))