[Mlir-commits] [mlir] a875e6e - [mlir][NFC] Fix typo in comment

Markus Böck llvmlistbot at llvm.org
Fri Oct 29 00:00:22 PDT 2021


Author: Markus Böck
Date: 2021-10-29T09:00:19+02:00
New Revision: a875e6e1225a5d4e2a4ad2101d8b5f1aeff25406

URL: https://github.com/llvm/llvm-project/commit/a875e6e1225a5d4e2a4ad2101d8b5f1aeff25406
DIFF: https://github.com/llvm/llvm-project/commit/a875e6e1225a5d4e2a4ad2101d8b5f1aeff25406.diff

LOG: [mlir][NFC] Fix typo in comment

Added: 
    

Modified: 
    mlir/include/mlir/IR/Builders.h

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/IR/Builders.h b/mlir/include/mlir/IR/Builders.h
index 72b9ca48d79c..9e26c3148105 100644
--- a/mlir/include/mlir/IR/Builders.h
+++ b/mlir/include/mlir/IR/Builders.h
@@ -349,7 +349,7 @@ class OpBuilder : public Builder {
   /// Sets the insertion point to the node after the specified value. If value
   /// has a defining operation, sets the insertion point to the node after such
   /// defining operation. This will cause subsequent insertions to go right
-  /// after it. Otherwise, value is a BlockArgumen. Sets the insertion point to
+  /// after it. Otherwise, value is a BlockArgument. Sets the insertion point to
   /// the start of its block.
   void setInsertionPointAfterValue(Value val) {
     if (Operation *op = val.getDefiningOp()) {


        


More information about the Mlir-commits mailing list