[llvm-commits] [llvm] r106468 - in /llvm/trunk/docs/tutorial: LangImpl6.html OCamlLangImpl6.html

Chris Lattner sabre at nondot.org
Mon Jun 21 13:31:30 PDT 2010


Author: lattner
Date: Mon Jun 21 15:31:30 2010
New Revision: 106468

URL: http://llvm.org/viewvc/llvm-project?rev=106468&view=rev
Log:
fix typos reported by Adam Warner!

Modified:
    llvm/trunk/docs/tutorial/LangImpl6.html
    llvm/trunk/docs/tutorial/OCamlLangImpl6.html

Modified: llvm/trunk/docs/tutorial/LangImpl6.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/LangImpl6.html?rev=106468&r1=106467&r2=106468&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/LangImpl6.html (original)
+++ llvm/trunk/docs/tutorial/LangImpl6.html Mon Jun 21 15:31:30 2010
@@ -531,7 +531,7 @@
 def unary-(v)
   0-v;
 
-# Define > with the same precedence as >.
+# Define > with the same precedence as <.
 def binary> 10 (LHS RHS)
   RHS < LHS;
 

Modified: llvm/trunk/docs/tutorial/OCamlLangImpl6.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/tutorial/OCamlLangImpl6.html?rev=106468&r1=106467&r2=106468&view=diff
==============================================================================
--- llvm/trunk/docs/tutorial/OCamlLangImpl6.html (original)
+++ llvm/trunk/docs/tutorial/OCamlLangImpl6.html Mon Jun 21 15:31:30 2010
@@ -512,7 +512,7 @@
 def unary-(v)
   0-v;
 
-# Define > with the same precedence as >.
+# Define > with the same precedence as <.
 def binary> 10 (LHS RHS)
   RHS < LHS;
 





More information about the llvm-commits mailing list