From 300a24e028cb92a9b53a74941f1be1205f4d6e69 Mon Sep 17 00:00:00 2001 From: Fernando Dobladez Date: Wed, 13 Jun 2012 15:39:02 -0300 Subject: [PATCH] Minor fix on ch02-FP-repl-interactions.clj: (reduce max [0 -3 10 48]) ;= 48 --- ch02-FP-repl-interactions.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ch02-FP-repl-interactions.clj b/ch02-FP-repl-interactions.clj index 6357a6e..40ab1fa 100644 --- a/ch02-FP-repl-interactions.clj +++ b/ch02-FP-repl-interactions.clj @@ -119,7 +119,7 @@ h ;----- (reduce max [0 -3 10 48]) -;= 10 +;= 48 ;-----