From 65585434db2a1179034addc73c6d3c9f41075d1e Mon Sep 17 00:00:00 2001 From: rogererens Date: Mon, 13 May 2013 18:39:29 +0200 Subject: [PATCH 1/2] Update tutorial.rst I did some elaborate math checking... --- docs/tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tutorial.rst b/docs/tutorial.rst index cad438f..4d84dcc 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -71,7 +71,7 @@ the hy interpreter: (setv result (- (/ (+ 1 3 88) 2) 8)) -This would return 37. But why? Well, we could look at the equivalent +This would return 38. But why? Well, we could look at the equivalent expression in python:: result = ((1 + 3 + 88) / 2) - 8 From 4d625fff206cf270d449581564a7aa6aa261b2b2 Mon Sep 17 00:00:00 2001 From: Paul Tagliamonte Date: Mon, 13 May 2013 19:59:54 -0400 Subject: [PATCH 2/2] Add @rogererens to authors --- AUTHORS | 1 + 1 file changed, 1 insertion(+) diff --git a/AUTHORS b/AUTHORS index 74d26c9..2247f9c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -10,3 +10,4 @@ * Konrad Hinsen * Vladimir Gorbunov * John Jacobsen +* rogererens