diff options
author | apense <apense@users.noreply.github.com> | 2015-06-04 13:31:40 -0400 |
---|---|---|
committer | apense <apense@users.noreply.github.com> | 2015-06-04 13:31:40 -0400 |
commit | 9d3b2d1e058990df65c44f76e2c07eeb1c623dbb (patch) | |
tree | c1a9768c4c4427030ab48e3f6eb97e8adbe288cb | |
parent | ccb9ae2d52cc42f2489a7bbd758c924a4dbbe872 (diff) | |
download | Nim-9d3b2d1e058990df65c44f76e2c07eeb1c623dbb.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 |