[Mlir-commits] [mlir] f7a9966 - Fix typo in mlir::Value doxygen comment (#83150)
llvmlistbot at llvm.org
llvmlistbot at llvm.org
Tue Feb 27 13:17:15 PST 2024
Author: Janeczko Jakub
Date: 2024-02-27T13:17:11-08:00
New Revision: f7a99664681390f4bb0211a52f0d89c70aa96762
URL: https://github.com/llvm/llvm-project/commit/f7a99664681390f4bb0211a52f0d89c70aa96762
DIFF: https://github.com/llvm/llvm-project/commit/f7a99664681390f4bb0211a52f0d89c70aa96762.diff
LOG: Fix typo in mlir::Value doxygen comment (#83150)
Fix #82900
Added:
Modified:
mlir/include/mlir/IR/Value.h
Removed:
################################################################################
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