diff --git a/llvm/docs/WritingAnLLVMPass.html b/llvm/docs/WritingAnLLVMPass.html index d4df8476f65b..ac9edea39aed 100644 --- a/llvm/docs/WritingAnLLVMPass.html +++ b/llvm/docs/WritingAnLLVMPass.html @@ -912,7 +912,7 @@ method. It takes a single template argument that specifies which pass class you want, and returns a reference to that pass. For example:

-   bool LICM::runOnFunction(Function &F) {
+   bool LICM::runOnFunction(Function &F) {
      LoopInfo &LI = getAnalysis<LoopInfo>();
      ...
    }