diff options
-rw-r--r-- | docs/WritingAnLLVMPass.html | 2 |
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> |