diff options
author | Araq <rumpf_a@web.de> | 2011-01-10 21:29:49 +0100 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-01-10 21:29:49 +0100 |
commit | d48ab374959eed4c5acbbb38e7ea86a011854102 (patch) | |
tree | 1700d225703f8ac3f34d5bca1d12f839d3a5fad1 /doc | |
parent | 19fbc8a55edb009e216ab8954fde906dec6b738a (diff) | |
download | Nim-d48ab374959eed4c5acbbb38e7ea86a011854102.tar.gz |
SPEC change: ^ is right-assoc and of highest priority
Diffstat (limited to 'doc')
-rwxr-xr-x | doc/manual.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/manual.txt b/doc/manual.txt index 299cf5b0f..11b18bdb1 100755 --- a/doc/manual.txt +++ b/doc/manual.txt @@ -368,7 +368,7 @@ indentation tokens is already described in the `Lexical Analysis`_ section. Nimrod allows user-definable operators. Binary operators have 8 different levels of precedence. For user-defined operators, the precedence depends on the first character the operator consists -of. All binary operators are left-associative, except binary operator starting +of. All binary operators are left-associative, except binary operators starting with (or only consisting of) ``^``. ================ ============================================== ================== =============== |