aboutsummaryrefslogtreecommitdiffstats
path: root/docs/tutorial/LangImpl1.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-06 01:39:12 +0000
committerChris Lattner <sabre@nondot.org>2007-11-06 01:39:12 +0000
commit711552174e3a666175228c72ab88f1c37439e284 (patch)
tree8ed0cc3ce60c04670b2696d58d16b298457844d9 /docs/tutorial/LangImpl1.html
parent89c94f5cedbb975f7820b85acbe56d62f11bdfe5 (diff)
downloadexternal_llvm-711552174e3a666175228c72ab88f1c37439e284.zip
external_llvm-711552174e3a666175228c72ab88f1c37439e284.tar.gz
external_llvm-711552174e3a666175228c72ab88f1c37439e284.tar.bz2
fixes from Ryan Brown.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43747 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl1.html')
-rw-r--r--docs/tutorial/LangImpl1.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl1.html b/docs/tutorial/LangImpl1.html
index f57848b..2ce59b9 100644
--- a/docs/tutorial/LangImpl1.html
+++ b/docs/tutorial/LangImpl1.html
@@ -232,7 +232,7 @@ if you typed in "1.23". Feel free to extend it :). Next we handle comments:
</pre>
</div>
-<p>We handle comments by skipping to the end of the line and then returning the
+<p>We handle comments by skipping to the end of the line and then return the
next comment. Finally, if the input doesn't match one of the above cases, it is
either an operator character like '+' or the end of the file. These are handled with
this code:</p>