Fix minor typo
authorChris Lattner <sabre@nondot.org>
Mon, 9 Sep 2002 03:48:46 +0000 (03:48 +0000)
committerChris Lattner <sabre@nondot.org>
Mon, 9 Sep 2002 03:48:46 +0000 (03:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3630 91177308-0d34-0410-b5e6-96231b3b80d8

docs/WritingAnLLVMPass.html

index d1cf63cae8f5baae4f9429ff59286b81c8c343da..353fe6e366fdc8814272dd8d81260cbc85df55d6 100644 (file)
@@ -194,7 +194,7 @@ Next, we declare our pass itself:<p>
 
 This declares a "<tt>Hello</tt>" class that is a subclass of <tt><a
 href="http://llvm.cs.uiuc.edu/doxygen/structFunctionPass.html">FunctionPass</a></tt>.
-The different builting pass subclasses are described in detail <a
+The different builtin pass subclasses are described in detail <a
 href="#passtype">later</a>, but for now, know that <a href="#FunctionPass"><tt>FunctionPass</tt></a>'s
 operate a function at a time.<p>