From 750d7b51bec01a59abeb23d868781175f4b1b46f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicol=C3=A1s=20Della=20Penna?= Date: Thu, 12 Mar 2015 03:38:15 +0200 Subject: [PATCH] minor change changed the specific values to make the example slightly more clear --- docs/language/api.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/language/api.rst b/docs/language/api.rst index 0d861de..c3eaade 100644 --- a/docs/language/api.rst +++ b/docs/language/api.rst @@ -79,7 +79,7 @@ place. The following code demonstrates this: .. code-block:: clj => (defn output [a b] (print a b)) - => (-> (+ 5 5) (output 5)) + => (-> (+ 4 6) (output 5)) 10 5 @@ -93,7 +93,7 @@ it appends it as the last argument. The following code demonstrates this: .. code-block:: clj => (defn output [a b] (print a b)) - => (->> (+ 5 5) (output 5)) + => (->> (+ 4 6) (output 5)) 5 10