diff --git a/docs/tutorial.rst b/docs/tutorial.rst index 9b3127d..cad438f 100644 --- a/docs/tutorial.rst +++ b/docs/tutorial.rst @@ -451,7 +451,10 @@ In Hy: (defclass FooBar [object] [[--init-- (fn [self x] - (setv self.x x))] + (setv self.x x) + ; Currently needed for --init-- because __init__ needs None + ; Hopefully this will go away :) + None)] [get-x (fn [self]