summary refs log tree commit diff stats
path: root/doc
diff options
context:
space:
mode:
authorAraq <rumpf_a@web.de>2015-02-08 13:37:22 +0100
committerAraq <rumpf_a@web.de>2015-02-08 13:38:06 +0100
commitc91ca82a43917163f00cf86e59d80a8909dca80a (patch)
treea1c90a80134dd1eabe2b71089e121601cec62abc /doc
parent52e297c4e186ad3c28583a5fd8a2a782cee1aed3 (diff)
downloadNim-c91ca82a43917163f00cf86e59d80a8909dca80a.tar.gz
fixes #2073; language spec change: arrow like operators are not right associative anymore
Diffstat (limited to 'doc')
-rw-r--r--doc/manual/syntax.txt6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/manual/syntax.txt b/doc/manual/syntax.txt
index c975e7f48..b40a8ce91 100644
--- a/doc/manual/syntax.txt
+++ b/doc/manual/syntax.txt
@@ -12,10 +12,8 @@ Binary operators have 11 different levels of precedence.
 Associativity
 -------------
 
-Binary operators whose first character is ``^`` or its last character
-is ``>`` are right-associative, all other binary operators are left-associative.
-
-Exception: The single "greater than" ``>`` operator is left-associative too.
+Binary operators whose first character is ``^`` are right-associative, all
+other binary operators are left-associative.
 
 Operators ending in ``>`` but longer than a single character are 
 called `arrow like`:idx:.