wisp
 
(Arne Babenhauserheide)
2016-05-12: fix syntax error

fix syntax error

diff --git a/examples/with.w b/examples/with.w
--- a/examples/with.w
+++ b/examples/with.w
@@ -32,7 +32,7 @@ define-syntax with
 
 define-method : exit (thing <port>)
               . "Ensure that a port is always closed at the end of the with-block."
-                close-port thing
+              close-port thing
 
 define : main args
          with (open-file "with.w" "r") as port