From 8a848a77347cd666e3c167a408ce3a5e252433dd Mon Sep 17 00:00:00 2001 From: Nathan Marz Date: Mon, 4 Jul 2016 08:15:40 -0400 Subject: [PATCH] fixed examples (from @raszi) --- List-of-Navigators.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/List-of-Navigators.md b/List-of-Navigators.md index a723115..32d06be 100644 --- a/List-of-Navigators.md +++ b/List-of-Navigators.md @@ -209,9 +209,9 @@ the structure has no metadata or may not contain metadata. `NIL->SET` navigates to the empty set `#{}` if the value is nil. Otherwise it stays at the current value. ```clojure -=> (select-one NIL->LIST nil) +=> (select-one NIL->SET nil) #{} -=> (select-one NIL->LIST :foo) +=> (select-one NIL->SET :foo) :foo ``` @@ -220,9 +220,9 @@ the structure has no metadata or may not contain metadata. `NIL->VECTOR` navigates to the empty vector `[]` if the value is nil. Otherwise it stays at the current value. ```clojure -=> (select-one NIL->LIST nil) +=> (select-one NIL->VECTOR nil) [] -=> (select-one NIL->LIST :foo) +=> (select-one NIL->VECTOR :foo) :foo ```