From 50ef4688e1e425a32fcc290b9e8cef96317b1828 Mon Sep 17 00:00:00 2001 From: Ali Asad Lotia Date: Sun, 15 Dec 2013 12:46:34 +0000 Subject: [PATCH] Delete extra closing square bracket in books def. The books def in the write-up above exercise seven in the predicates chapter had an extra closing square bracket which was an invalid expression. Removed the bracket and it is now a valid expression. --- predicates.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/predicates.markdown b/predicates.markdown index 27ca5c0..568a5fe 100644 --- a/predicates.markdown +++ b/predicates.markdown @@ -321,7 +321,7 @@ some awards. (def scanner-darkly {:title "A Scanner Darkly" :authors #{dick}}) (def books #{cities, wild-seed, lord-of-light, - deus-irae, ysabel, scanner-darkly}]) + deus-irae, ysabel, scanner-darkly}) ~~~