minor change

changed the specific values to make the example slightly more clear
This commit is contained in:
Nicolás Della Penna 2015-03-12 03:38:15 +02:00
parent 55d4d20f79
commit 750d7b51be

View File

@ -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