From eebcee39677550e8990888f6baab5cb5efa6dcd0 Mon Sep 17 00:00:00 2001 From: Zak Wilcox Date: Sat, 22 Mar 2014 00:49:25 +0000 Subject: [PATCH] :else for conditions: remove condp (won't work) `condp` can't usually take an :else label for its default since it's rare that the predicate would happen to evaluate to `true` for :else --- as demonstrated by the next example which uses condp with an unlabelled default. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b5b5de9..c990cd1 100644 --- a/README.md +++ b/README.md @@ -569,7 +569,7 @@ pairwise constructs as found in e.g. `let` and `cond`. (.. System getProperties (get "os.name")) ``` -* Use `:else` as the catch-all test expression in `cond` and `condp`. +* Use `:else` as the catch-all test expression in `cond`. ```Clojure ;; good