From 93210092e9bacfcefb0d3681d4aecf4e428aed4e Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Fri, 11 Sep 2015 19:43:42 -0400 Subject: [PATCH] improve docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c0bbaf9..7229232 100644 --- a/README.md +++ b/README.md @@ -160,7 +160,7 @@ You can even precompile selectors that require parameters! For example, `keypath (select [(keypath k) ALL odd?] data)) ``` -Without precompilation this code will execute significantly slower. But it seems like it requires precompilation because the selector path is dependent on an argument to the function. Specter gets around this by allowing you to precompile and bind the parameters to the selector later, like so: +It seems difficult to precompile this path because it is dependent on an argument to the function it is within. Specter gets around this by allowing you to precompile a path without its parameters and bind the parameters to the selector later, like so: ```clojure (def foo-path (comp-paths keypath ALL odd?))