From dd9d5801683e05712989871718dff4c468584cc3 Mon Sep 17 00:00:00 2001 From: Vishakh Prakash <97385752+Vishakh2012@users.noreply.github.com> Date: Tue, 31 Dec 2024 12:10:47 +0530 Subject: [PATCH] Update Ch-2.md line 265 in the file llvm-project/mlir/docs/Tutorials/Toy/Ch-2.md changed mlir::OpTraits to mlir::OpTrait --- mlir/docs/Tutorials/Toy/Ch-2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlir/docs/Tutorials/Toy/Ch-2.md b/mlir/docs/Tutorials/Toy/Ch-2.md index b807ee3a20492..039417c9c9a19 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::Impl> { + mlir::OpTrait::OneTypedResult::Impl> { public: /// Inherit the constructors from the base Op class.