[Mlir-commits] [mlir] fix typo in mlir::Value (PR #83150)
Janeczko Jakub
llvmlistbot at llvm.org
Tue Feb 27 08:30:27 PST 2024
https://github.com/qbojj created https://github.com/llvm/llvm-project/pull/83150
Fix #82900
>From 9cbabb15f578d5171489ea3ca3b9efa96b199133 Mon Sep 17 00:00:00 2001
From: Janeczko Jakub <105227351+qbojj at users.noreply.github.com>
Date: Tue, 27 Feb 2024 17:29:56 +0100
Subject: [PATCH] fix typo in mlir::Value
Fix #82900
---
mlir/include/mlir/IR/Value.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mlir/include/mlir/IR/Value.h b/mlir/include/mlir/IR/Value.h
index fff3b87faff669..a74d0faa1dfc4b 100644
--- a/mlir/include/mlir/IR/Value.h
+++ b/mlir/include/mlir/IR/Value.h
@@ -90,7 +90,7 @@ class alignas(8) ValueImpl : public IRObjectWithUseList<OpOperand> {
/// class has value-type semantics and is just a simple wrapper around a
/// ValueImpl that is either owner by a block(in the case of a BlockArgument) or
/// an Operation(in the case of an OpResult).
-/// As most IR construct, this isn't const-correct, but we keep method
+/// As most IR constructs, this isn't const-correct, but we keep method
/// consistent and as such method that immediately modify this Value aren't
/// marked `const` (include modifying the Value use-list).
class Value {
More information about the Mlir-commits
mailing list