diff --git a/mlir/g3doc/WritingAPass.md b/mlir/g3doc/WritingAPass.md index 61b2226397a4..a4b6e35b28f7 100644 --- a/mlir/g3doc/WritingAPass.md +++ b/mlir/g3doc/WritingAPass.md @@ -141,7 +141,7 @@ defined above, let's see some examples: ```c++ /// An interesting analysis. -struct MyAnalysis { +struct MyFunctionAnalysis { // Compute this analysis with the provided operation. MyFunctionAnalysis(Operation *op); };