shithub: mc

Download patch

ref: ed5a96dec13db05df59e4af350be066f2c57efd2
parent: 105a65cbe900d0151e97e71da8e52d4dabbf19ba
author: Ori Bernstein <ori@eigenstate.org>
date: Sun Feb 12 20:55:46 EST 2017

Disambiguate args for comparisons in spec.

--- a/doc/lang.txt
+++ b/doc/lang.txt
@@ -1109,12 +1109,12 @@
                     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