typo from Ryan Brown.
authorChris Lattner <sabre@nondot.org>
Tue, 6 Nov 2007 01:40:41 +0000 (01:40 +0000)
committerChris Lattner <sabre@nondot.org>
Tue, 6 Nov 2007 01:40:41 +0000 (01:40 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@43748 91177308-0d34-0410-b5e6-96231b3b80d8

docs/tutorial/LangImpl8.html

index 66155a0bcb282b60708812430eb6bc53e3ea5460..a92fac832be87ebb5f35608841a5fc78e09de9d6 100644 (file)
@@ -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'