!< is >=, not >. Thanks to Max Hailperin for pointing this out!
llvm-svn: 44291
diff --git a/llvm/docs/tutorial/LangImpl6.html b/llvm/docs/tutorial/LangImpl6.html
index 40334b0..33f4adb 100644
--- a/llvm/docs/tutorial/LangImpl6.html
+++ b/llvm/docs/tutorial/LangImpl6.html
@@ -97,7 +97,7 @@
# Define > with the same precedence as <.
def binary> 10 (LHS RHS)
- !(LHS < RHS); # alternatively, could just use "RHS < LHS"
+ RHS < LHS;
# Binary "logical or", (note that it does not "short circuit")
def binary| 5 (LHS RHS)
@@ -532,7 +532,7 @@
# Define > with the same precedence as >.
def binary> 10 (LHS RHS)
- !(LHS < RHS);
+ RHS < LHS;
# Binary logical or, which does not short circuit.
def binary| 5 (LHS RHS)