summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorapense <apense@users.noreply.github.com>2015-06-04 13:31:40 -0400
committerapense <apense@users.noreply.github.com>2015-06-04 13:31:40 -0400
commit9d3b2d1e058990df65c44f76e2c07eeb1c623dbb (patch)
treec1a9768c4c4427030ab48e3f6eb97e8adbe288cb
parentccb9ae2d52cc42f2489a7bbd758c924a4dbbe872 (diff)
downloadNim-9d3b2d1e058990df65c44f76e2c07eeb1c623dbb.tar.gz
Fixed code indentation in procs.txt
Now matches tut2.txt
-rw-r--r--doc/manual/procs.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/procs.txt b/doc/manual/procs.txt
index 38e343686..23b5e4d1e 100644
--- a/doc/manual/procs.txt
+++ b/doc/manual/procs.txt
@@ -404,7 +404,7 @@ dispatch.
     result.a = a
     result.b = b
 
-echo eval(newPlus(newPlus(newLit(1), newLit(2)), newLit(4)))
+  echo eval(newPlus(newPlus(newLit(1), newLit(2)), newLit(4)))
   
 In the example the constructors ``newLit`` and ``newPlus`` are procs
 because they should use static binding, but ``eval`` is a method because it