From e20278cf9709af61badbc5e5dc6d03195ee8be38 Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Thu, 9 Jun 2016 23:19:34 -0400 Subject: [PATCH] fix typo in docstring --- src/clj/com/rpl/specter/macros.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/clj/com/rpl/specter/macros.clj b/src/clj/com/rpl/specter/macros.clj index a5d757f..b5aeb6f 100644 --- a/src/clj/com/rpl/specter/macros.clj +++ b/src/clj/com/rpl/specter/macros.clj @@ -603,7 +603,7 @@ "Return a reducible object that traverses over `structure` to every element specified by the path. This macro will attempt to do inline factoring and caching of the path, falling - back to compiling the path on every invocation it it's not possible to + back to compiling the path on every invocation if it's not possible to factor/cache the path." [apath structure] `(i/do-compiled-traverse (path ~apath) ~structure))