From 6808cdc4244723b3f9712fd13eed026d5f137459 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 21 Jun 2010 20:31:30 +0000 Subject: [PATCH] fix typos reported by Adam Warner! git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106468 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/tutorial/LangImpl6.html | 2 +- docs/tutorial/OCamlLangImpl6.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/tutorial/LangImpl6.html b/docs/tutorial/LangImpl6.html index 0925c801b50..9a05fbf7b83 100644 --- a/docs/tutorial/LangImpl6.html +++ b/docs/tutorial/LangImpl6.html @@ -531,7 +531,7 @@ def unary!(v) def unary-(v) 0-v; -# Define > with the same precedence as >. +# Define > with the same precedence as <. def binary> 10 (LHS RHS) RHS < LHS; diff --git a/docs/tutorial/OCamlLangImpl6.html b/docs/tutorial/OCamlLangImpl6.html index b444fffbc00..86210febca2 100644 --- a/docs/tutorial/OCamlLangImpl6.html +++ b/docs/tutorial/OCamlLangImpl6.html @@ -512,7 +512,7 @@ def unary!(v) def unary-(v) 0-v; -# Define > with the same precedence as >. +# Define > with the same precedence as <. def binary> 10 (LHS RHS) RHS < LHS;