summaryrefslogtreecommitdiff
path: root/docs/tutorial/LangImpl8.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-11-06 01:40:41 +0000
committerChris Lattner <sabre@nondot.org>2007-11-06 01:40:41 +0000
commitefcc3f5c5e12c4558dbde25fba0986f511686d42 (patch)
treeadeac1e809abf501c52b9868c190eeb94e6ac440 /docs/tutorial/LangImpl8.html
parent711552174e3a666175228c72ab88f1c37439e284 (diff)
downloadllvm-efcc3f5c5e12c4558dbde25fba0986f511686d42.tar.gz
llvm-efcc3f5c5e12c4558dbde25fba0986f511686d42.tar.bz2
llvm-efcc3f5c5e12c4558dbde25fba0986f511686d42.tar.xz
typo from Ryan Brown.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43748 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/tutorial/LangImpl8.html')
-rw-r--r--docs/tutorial/LangImpl8.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tutorial/LangImpl8.html b/docs/tutorial/LangImpl8.html
index 66155a0bcb..a92fac832b 100644
--- a/docs/tutorial/LangImpl8.html
+++ b/docs/tutorial/LangImpl8.html
@@ -280,7 +280,7 @@ do some specific feature, so they go ahead and extend it to do so.</p>
<p>Third, it <em>is certainly possible</em> to add language-specific
optimizations, and you have a number of choices in how to do it. As one trivial
example, it is possible to add language-specific optimization passes that
-"known" things about code compiled for a language. In the case of the C family,
+"know" things about code compiled for a language. In the case of the C family,
there is an optimziation pass that "knows" about the standard C library
functions. If you call "exit(0)" in main(), it knows that it is safe to
optimize that into "return 0;" for example, because C specifies what the 'exit'