[Mlir-commits] [mlir] 6e0c2bc - [mlir][async][nfc] Fix typo in async op description (#143621)

llvmlistbot at llvm.org llvmlistbot at llvm.org
Wed Jun 11 02:05:38 PDT 2025


Author: Javed Absar
Date: 2025-06-11T10:05:34+01:00
New Revision: 6e0c2bc668107547365d79a6e5f57317a6302c29

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

LOG: [mlir][async][nfc] Fix typo in async op description (#143621)

Added: 
    

Modified: 
    mlir/include/mlir/Dialect/Async/IR/AsyncOps.td

Removed: 
    


################################################################################
diff  --git a/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td b/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td
index 3d29d5bc7dbb6..6dbcdefbc9332 100644
--- a/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td
+++ b/mlir/include/mlir/Dialect/Async/IR/AsyncOps.td
@@ -376,7 +376,7 @@ def Async_CreateGroupOp : Async_Op<"create_group", [Pure]> {
 }
 
 def Async_AddToGroupOp : Async_Op<"add_to_group", []> {
-  let summary = "adds and async token or value to the group";
+  let summary = "adds an async token or value to the group";
   let description = [{
     The `async.add_to_group` adds an async token or value to the async group.
     Returns the rank of the added element in the group. This rank is fixed
@@ -655,7 +655,7 @@ def Async_RuntimeLoadOp : Async_Op<"runtime.load",
 }
 
 def Async_RuntimeAddToGroupOp : Async_Op<"runtime.add_to_group", []> {
-  let summary = "adds and async token or value to the group";
+  let summary = "adds an async token or value to the group";
   let description = [{
     The `async.runtime.add_to_group` adds an async token or value to the async
     group. Returns the rank of the added element in the group.


        


More information about the Mlir-commits mailing list