[Mlir-commits] [mlir] 9d0fa42 - [mlir] Update Ch-2.md (#121379)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Sun Jan 5 17:44:09 PST 2025
Author: Vishakh Prakash
Date: 2025-01-06T09:44:05+08:00
New Revision: 9d0fa42fbbffe3ff584b26f3a48f8f786f68da72
URL: https://github.com/llvm/llvm-project/commit/9d0fa42fbbffe3ff584b26f3a48f8f786f68da72
DIFF: https://github.com/llvm/llvm-project/commit/9d0fa42fbbffe3ff584b26f3a48f8f786f68da72.diff
LOG: [mlir] Update Ch-2.md (#121379)
line 265 in the file llvm-project/mlir/docs/Tutorials/Toy/Ch-2.md
changed mlir::OpTraits to mlir::OpTrait
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 b807ee3a20492d..039417c9c9a19d 100644
--- a/mlir/docs/Tutorials/Toy/Ch-2.md
+++ b/mlir/docs/Tutorials/Toy/Ch-2.md
@@ -262,7 +262,7 @@ class ConstantOp : public mlir::Op<
mlir::OpTrait::OneResult,
/// We also provide a utility `getType` accessor that
/// returns the TensorType of the single result.
- mlir::OpTraits::OneTypedResult<TensorType>::Impl> {
+ mlir::OpTrait::OneTypedResult<TensorType>::Impl> {
public:
/// Inherit the constructors from the base Op class.
More information about the Mlir-commits
mailing list