[Mlir-commits] [mlir] a66d8f6 - [mlir][doc] fixup code block (#153977)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun Aug 17 04:01:09 PDT 2025
Author: Erik Davis
Date: 2025-08-17T13:01:05+02:00
New Revision: a66d8f62e6a6e64c77322533e4f6f2a2a5884aa2
URL: https://github.com/llvm/llvm-project/commit/a66d8f62e6a6e64c77322533e4f6f2a2a5884aa2
DIFF: https://github.com/llvm/llvm-project/commit/a66d8f62e6a6e64c77322533e4f6f2a2a5884aa2.diff
LOG: [mlir][doc] fixup code block (#153977)
This fixes a small typo in the toy tutorial. A code block was not
correctly terminated, causing it to run into the subsequent block.
Added:
Modified:
mlir/docs/Tutorials/Toy/Ch-4.md
Removed:
################################################################################
diff --git a/mlir/docs/Tutorials/Toy/Ch-4.md b/mlir/docs/Tutorials/Toy/Ch-4.md
index e9abe36afc4d7..621f6a684285a 100644
--- a/mlir/docs/Tutorials/Toy/Ch-4.md
+++ b/mlir/docs/Tutorials/Toy/Ch-4.md
@@ -170,7 +170,7 @@ let arguments = (ins
OptionalAttr<DictArrayAttr>:$arg_attrs,
OptionalAttr<DictArrayAttr>:$res_attrs
);
-
+```
We have already provided the definition in the `extraClassDeclaration`
field of the `FuncOp` class:
More information about the Mlir-commits
mailing list