From aee7bad6eb481131d6ff00a9df9c6c556983ea6c Mon Sep 17 00:00:00 2001 From: Michael Fogleman Date: Fri, 6 Oct 2017 20:17:20 -0400 Subject: [PATCH] Follow capitalization convention in example of path. --- List-of-Macros.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/List-of-Macros.md b/List-of-Macros.md index 048c705..b47b669 100644 --- a/List-of-Macros.md +++ b/List-of-Macros.md @@ -391,8 +391,8 @@ select/transform/setval/replace-in/etc. macros. Any higher order navigators passed to `path` must include their arguments, even if their arguments will be evaluated at runtime. ```clojure -=> (def p (path even?)) -=> (select [ALL p] (range 10)) +=> (def MY-PATH (path even?)) +=> (select [ALL MY-PATH] (range 10)) [0 2 4 6 8] ```