diff options
author | reactormonk <hafnersimon@gmail.com> | 2015-01-08 14:24:34 +0500 |
---|---|---|
committer | reactormonk <hafnersimon@gmail.com> | 2015-01-08 14:24:34 +0500 |
commit | eafbafb0e7d25f69de953edf805adcad3f6b8277 (patch) | |
tree | 5ea5b55da6abf527c558c147d33fd6fabb75974e | |
parent | 0fc052b0946690d7326d3c33f6f61a092946a9d8 (diff) | |
parent | 58ea5a4e988330b0ddb35373257def1d35d72c61 (diff) | |
download | Nim-eafbafb0e7d25f69de953edf805adcad3f6b8277.tar.gz |
Merge pull request #1905 from JinShil/patch-1
Fixed grammar in 'let statment'
-rw-r--r-- | doc/manual/stmts.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual/stmts.txt b/doc/manual/stmts.txt index e31be7121..6222624e4 100644 --- a/doc/manual/stmts.txt +++ b/doc/manual/stmts.txt @@ -133,7 +133,7 @@ let statement ------------- A ``let`` statement declares new local and global `single assignment`:idx: -variables and binds a value to them. The syntax is the of the ``var`` +variables and binds a value to them. The syntax is the same as that of the ``var`` statement, except that the keyword ``var`` is replaced by the keyword ``let``. Let variables are not l-values and can thus not be passed to ``var`` parameters nor can their address be taken. They cannot be assigned new values. |