[Mlir-commits] [mlir] 9bfbff2 - [mlir][docs] Fix typo: 'DDR' → 'DRR' in Creating a Dialect tutorial (#161967)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Sat Oct 4 14:12:52 PDT 2025


Author: Joseph Bak
Date: 2025-10-04T23:12:47+02:00
New Revision: 9bfbff2c22f14d0494d324302bb5df0f7d2a7c45

URL: https://github.com/llvm/llvm-project/commit/9bfbff2c22f14d0494d324302bb5df0f7d2a7c45
DIFF: https://github.com/llvm/llvm-project/commit/9bfbff2c22f14d0494d324302bb5df0f7d2a7c45.diff

LOG: [mlir][docs] Fix typo: 'DDR' → 'DRR' in Creating a Dialect tutorial (#161967)

Fixes a small typo in the Creating a Dialect tutorial.

The rewrite rules format should be DRR (Declarative Rewrite Rules), not
DDR.

Added: 
    

Modified: 
    mlir/docs/Tutorials/CreatingADialect.md

Removed: 
    


################################################################################
diff  --git a/mlir/docs/Tutorials/CreatingADialect.md b/mlir/docs/Tutorials/CreatingADialect.md
index af709fc46eff5..e30b80bc5207c 100644
--- a/mlir/docs/Tutorials/CreatingADialect.md
+++ b/mlir/docs/Tutorials/CreatingADialect.md
@@ -22,7 +22,7 @@ typically defined in FooDialect.cpp, which includes FooOps.cpp.inc and
 FooOpsInterfaces.h.inc.
 
 The 'Transforms' directory contains rewrite rules for the dialect,
-typically described in TableGen file using the [DDR
+typically described in TableGen file using the [DRR
 format](../DeclarativeRewrites.md).
 
 Note that dialect names should not generally be suffixed with “Ops”,


        


More information about the Mlir-commits mailing list