summaryrefslogtreecommitdiff
path: root/docs/WritingAnLLVMPass.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2002-09-09 03:48:46 +0000
committerChris Lattner <sabre@nondot.org>2002-09-09 03:48:46 +0000
commitd6ea9260dba6b22c7b3d715dc5d8adc1a6d4ba4c (patch)
tree733937307763474103119d4c42f036dd97c93b11 /docs/WritingAnLLVMPass.html
parent5862173c84f18957d90dffcdac23aecae286f9ba (diff)
downloadllvm-d6ea9260dba6b22c7b3d715dc5d8adc1a6d4ba4c.tar.gz
llvm-d6ea9260dba6b22c7b3d715dc5d8adc1a6d4ba4c.tar.bz2
llvm-d6ea9260dba6b22c7b3d715dc5d8adc1a6d4ba4c.tar.xz
Fix minor typo
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3630 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/WritingAnLLVMPass.html')
-rw-r--r--docs/WritingAnLLVMPass.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html
index d1cf63cae8..353fe6e366 100644
--- a/docs/WritingAnLLVMPass.html
+++ b/docs/WritingAnLLVMPass.html
@@ -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>