[Mlir-commits] [mlir] fix typo in mlir::Value (PR #83150)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Feb 27 08:31:16 PST 2024
llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT-->
@llvm/pr-subscribers-mlir
Author: Janeczko Jakub (qbojj)
<details>
<summary>Changes</summary>
Fix #<!-- -->82900
---
Full diff: https://github.com/llvm/llvm-project/pull/83150.diff
1 Files Affected:
- (modified) mlir/include/mlir/IR/Value.h (+1-1)
``````````diff
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 {
``````````
</details>
https://github.com/llvm/llvm-project/pull/83150
More information about the Mlir-commits
mailing list