fix typos reported by Adam Warner!
authorChris Lattner <sabre@nondot.org>
Mon, 21 Jun 2010 20:31:30 +0000 (20:31 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 21 Jun 2010 20:31:30 +0000 (20:31 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106468 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl6.html
docs/tutorial/OCamlLangImpl6.html

index 0925c801b50a6ce8eefcc91f81b6d2e867faf000..9a05fbf7b833250b64662e0c738adc866f060480 100644 (file)
@@ -531,7 +531,7 @@ def unary!(v)
 def unary-(v)
   0-v;
 
-# Define &gt; with the same precedence as &gt;.
+# Define &gt; with the same precedence as &lt;.
 def binary&gt; 10 (LHS RHS)
   RHS &lt; LHS;
 
index b444fffbc00201d3c69e589b8352733e3e074ae0..86210febca20502998a1b07954cb1a5bc99b2a8a 100644 (file)
@@ -512,7 +512,7 @@ def unary!(v)
 def unary-(v)
   0-v;
 
-# Define &gt; with the same precedence as &gt;.
+# Define &gt; with the same precedence as &lt;.
 def binary&gt; 10 (LHS RHS)
   RHS &lt; LHS;