From d6ea9260dba6b22c7b3d715dc5d8adc1a6d4ba4c Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Mon, 9 Sep 2002 03:48:46 +0000 Subject: [PATCH] Fix minor typo git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@3630 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/WritingAnLLVMPass.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/WritingAnLLVMPass.html b/docs/WritingAnLLVMPass.html index d1cf63cae8f..353fe6e366f 100644 --- a/docs/WritingAnLLVMPass.html +++ b/docs/WritingAnLLVMPass.html @@ -194,7 +194,7 @@ Next, we declare our pass itself:

This declares a "Hello" class that is a subclass of FunctionPass. -The different builting pass subclasses are described in detail later, but for now, know that FunctionPass's operate a function at a time.