[Mlir-commits] [mlir] 5d20fd3 - [mlir] Fix typo in toy tutorial (#200640)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun May 31 05:12:29 PDT 2026
Author: Maximilian Ehlers
Date: 2026-05-31T12:12:24Z
New Revision: 5d20fd32807e4fdb4fc8b278a77c0ab06676fd15
URL: https://github.com/llvm/llvm-project/commit/5d20fd32807e4fdb4fc8b278a77c0ab06676fd15
DIFF: https://github.com/llvm/llvm-project/commit/5d20fd32807e4fdb4fc8b278a77c0ab06676fd15.diff
LOG: [mlir] Fix typo in toy tutorial (#200640)
Signed-off-by: Maximilian Ehlers <maximilian at sodawa.com>
Added:
Modified:
mlir/docs/Tutorials/Toy/Ch-2.md
Removed:
################################################################################
diff --git a/mlir/docs/Tutorials/Toy/Ch-2.md b/mlir/docs/Tutorials/Toy/Ch-2.md
index 5ed8a4c227bfa..cdc30a6156264 100644
--- a/mlir/docs/Tutorials/Toy/Ch-2.md
+++ b/mlir/docs/Tutorials/Toy/Ch-2.md
@@ -620,7 +620,7 @@ def PrintOp : Toy_Op<"print"> {
A C++ implementation for the printer and parser is shown below:
```c++
-/// The 'OpAsmPrinter' class is a stream that will allows for formatting
+/// The 'OpAsmPrinter' class is a stream that allows for formatting
/// strings, attributes, operands, types, etc.
void PrintOp::print(mlir::OpAsmPrinter &printer) {
printer << "toy.print " << op.input();
More information about the Mlir-commits
mailing list