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