Skip to content

[mlir][async][nfc] fix typo in op description #143621

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 11, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions mlir/include/mlir/Dialect/Async/IR/AsyncOps.td
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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.
Expand Down
Loading