diff options
author | Ori Bernstein <ori@eigenstate.org> | 2017-02-13 01:55:46 -0800 |
---|---|---|
committer | Ori Bernstein <ori@eigenstate.org> | 2017-02-13 01:55:46 -0800 |
commit | ed5a96dec13db05df59e4af350be066f2c57efd2 (patch) | |
tree | 81218a7ba0be3aa2118a36af61bb22bfb1d00928 | |
parent | 105a65cbe900d0151e97e71da8e52d4dabbf19ba (diff) | |
download | mc-ed5a96dec13db05df59e4af350be066f2c57efd2.tar.gz |
Disambiguate args for comparisons in spec.
-rw-r--r-- | doc/lang.txt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/lang.txt b/doc/lang.txt index 0d20102..b0db488 100644 --- a/doc/lang.txt +++ b/doc/lang.txt @@ -1109,12 +1109,12 @@ TABLE OF CONTENTS: x ^ y Bitwise xor Precedence 4: - x == x Equality - x != x Inequality - x > x Greater than - x >= x Greater than or equal to - x < x Less than - x <= x Less than or equal to + x == y Equality + x != y Inequality + x > y Greater than + x >= y Greater than or equal to + x < y Less than + x <= y Less than or equal to Precedence 3: x && y Logical and |