From a67d1765f5ca8319d0f4cd635fd21b6ff5e72e1e Mon Sep 17 00:00:00 2001 From: Lewis Panos Date: Wed, 11 Sep 2024 15:25:30 +0000 Subject: [PATCH] fix typo in error message --- lib/Dialect/TTIR/IR/TTIROps.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Dialect/TTIR/IR/TTIROps.cpp b/lib/Dialect/TTIR/IR/TTIROps.cpp index 2a662aa7f..c50498918 100644 --- a/lib/Dialect/TTIR/IR/TTIROps.cpp +++ b/lib/Dialect/TTIR/IR/TTIROps.cpp @@ -283,7 +283,7 @@ ::mlir::LogicalResult mlir::tt::ttir::MaxPool2dOp::verify() { std::string with_value = getOriginalHeight().has_value() ? "original_height" : "original_width"; return emitOpError() - << "If providing the original height and width as attributs, both " + << "If providing the original height and width as attributes, both " "original_height and original_width must be set. However, only " << with_value << " was provided."; }