diff options
author | apense <apense@users.noreply.github.com> | 2015-06-04 13:31:40 -0400 |
---|---|---|
committer | Oscar Campbell <oscar@campbell.nu> | 2015-06-07 13:14:52 +0200 |
commit | e132032b0f3af7fd03dd35b68a795c4dbc25ddfc (patch) | |
tree | ca80d158af928cf1cae0fc45776a4b6000ff49e2 | |
parent | 83369f4bce15d6d8f4d0bd9a7cb17b2def6daa54 (diff) | |
download | Nim-e132032b0f3af7fd03dd35b68a795c4dbc25ddfc.tar.gz |
Fixed code indentation in procs.txt
Now matches tut2.txt
-rw-r--r-- | doc/manual/procs.txt | 2 |
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 |