From 2fc29f1eabc4ea58407cfed47e4288ca7e27e004 Mon Sep 17 00:00:00 2001 From: MLIR Team Date: Tue, 15 Oct 2019 15:44:56 -0700 Subject: [PATCH] Fix typo PiperOrigin-RevId: 274905193 --- mlir/g3doc/Tutorials/Toy/Ch-3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/g3doc/Tutorials/Toy/Ch-3.md b/mlir/g3doc/Tutorials/Toy/Ch-3.md index 2118f2967ac1..5f72e51e40a1 100644 --- a/mlir/g3doc/Tutorials/Toy/Ch-3.md +++ b/mlir/g3doc/Tutorials/Toy/Ch-3.md @@ -74,7 +74,7 @@ the IR and replacing it with a different set of operations, we can plug into the MLIR `Canonicalizer` pass by implementing a `RewritePattern`: ```c++ -/// Fold transpose(transpose(x)) -> transpose(x) +/// Fold transpose(transpose(x)) -> x struct SimplifyRedundantTranspose : public mlir::OpRewritePattern { /// We register this pattern to match every toy.transpose in the IR. /// The "benefit" is used by the framework to order the patterns and process