Skip to content
Merged
Changes from 2 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
2 changes: 1 addition & 1 deletion mlir/include/mlir/Dialect/IRDL/IR/IRDLOps.td
Original file line number Diff line number Diff line change
Expand Up @@ -634,7 +634,7 @@ def IRDL_AllOfOp : IRDL_ConstraintOp<"all_of",
```

The above program defines a type `complex` inside the dialect `cmath` that
can has one parameter that must be 32-bit long and a float (in other
can have one parameter that must be 32-bit long and a float (in other
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
can have one parameter that must be 32-bit long and a float (in other
has one parameter that must be 32-bit long and a float (in other

Actually, I think has would be better than can have here, because the parameter is required. Otherwise, readers might think that it is optional. What do you think?

Copy link
Contributor Author

@noamzaks noamzaks May 19, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sure, I chose "can have" because it is used in line 600 as well, so I'll change both (since it's not optional)

words, that must be `f32`).
}];

Expand Down