[Mlir-commits] [mlir] [mlir][doc] fixup code block (PR #153977)
Erik Davis
llvmlistbot at llvm.org
Sat Aug 16 13:11:06 PDT 2025
https://github.com/braised-babbage created https://github.com/llvm/llvm-project/pull/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.
>From cea283047ac41ac864d9dc5366633d1446f9d688 Mon Sep 17 00:00:00 2001
From: Erik Davis <erik at cadlag.org>
Date: Sat, 16 Aug 2025 13:04:18 -0700
Subject: [PATCH] [mlir][doc] fixup code block
---
mlir/docs/Tutorials/Toy/Ch-4.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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