diff options
author | Araq <rumpf_a@web.de> | 2011-07-25 10:52:22 -0700 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-07-25 10:52:22 -0700 |
commit | 4953895efe1d62c5f619bcffb6f03b1ec0202a05 (patch) | |
tree | cfdec437e4b6f9a9936eb773f3462b5e5cbebd74 | |
parent | f26d599f4c935038c91f480faeb209ece9e5bb9a (diff) | |
parent | 7cf17171a5c6dfa45c18b5277c98164bb450d9b4 (diff) | |
download | Nim-4953895efe1d62c5f619bcffb6f03b1ec0202a05.tar.gz |
Merge pull request #37 from keitahaga/typo-fix
doc/intern.txt: Typo fix
-rwxr-xr-x | doc/intern.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/intern.txt b/doc/intern.txt index 67812bcc8..c6c0108a7 100755 --- a/doc/intern.txt +++ b/doc/intern.txt @@ -52,7 +52,7 @@ For a release version use:: nimrod c koch.nim ./koch boot -d:release -The ``koch`` program is Nimrod's maintainance script. It is a replacement for +The ``koch`` program is Nimrod's maintenance script. It is a replacement for make and shell scripting with the advantage that it is much more portable. @@ -125,7 +125,7 @@ parsing. Otherwise generics cannot work. The syntax tree --------------- -The synax tree consists of nodes which may have an arbitrary number of +The syntax tree consists of nodes which may have an arbitrary number of children. Types and symbols are represented by other nodes, because they may contain cycles. The AST changes its shape after semantic checking. This is needed to make life easier for the code generators. See the "ast" module |