summaryrefslogtreecommitdiff
path: root/docs/tutorial
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-06-21 20:31:30 +0000
committerChris Lattner <sabre@nondot.org>2010-06-21 20:31:30 +0000
commit6808cdc4244723b3f9712fd13eed026d5f137459 (patch)
tree2def58239bdc61a763ce9e7e3bed8a3b2864f433 /docs/tutorial
parentbe4e066ff91af7d4f9e7ee2138625603f03c8450 (diff)
downloadllvm-6808cdc4244723b3f9712fd13eed026d5f137459.tar.gz
llvm-6808cdc4244723b3f9712fd13eed026d5f137459.tar.bz2
llvm-6808cdc4244723b3f9712fd13eed026d5f137459.tar.xz
fix typos reported by Adam Warner!
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106468 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial')
-rw-r--r--docs/tutorial/LangImpl6.html2
-rw-r--r--docs/tutorial/OCamlLangImpl6.html2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/LangImpl6.html b/docs/tutorial/LangImpl6.html
index 0925c801b5..9a05fbf7b8 100644
--- a/docs/tutorial/LangImpl6.html
+++ b/docs/tutorial/LangImpl6.html
@@ -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;
diff --git a/docs/tutorial/OCamlLangImpl6.html b/docs/tutorial/OCamlLangImpl6.html
index b444fffbc0..86210febca 100644
--- a/docs/tutorial/OCamlLangImpl6.html
+++ b/docs/tutorial/OCamlLangImpl6.html
@@ -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;