Skip to content
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

[mlir] Fix typos in documentation #110869

Merged
merged 1 commit into from
Oct 12, 2024
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion mlir/docs/DefiningDialects/Operations.md
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ The available directives are as follows:

* `ref ( input )`

- Represents a reference to the a variable or directive, that must have
- Represents a reference to a variable or directive, that must have
already been resolved, that may be used as a parameter to a `custom`
directive.
- Used to pass previously parsed entities to custom directives.
Expand Down
2 changes: 1 addition & 1 deletion mlir/docs/DefiningDialects/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ void MyOp::setOtherValue(StringAttr newValue);

### Dependent Dialects

MLIR has a very large ecosystem, and contains dialects that server many different purposes. It
MLIR has a very large ecosystem, and contains dialects that serve many different purposes. It
is quite common, given the above, that dialects may want to reuse certain components from other
dialects. This may mean generating operations from those dialects during canonicalization, reusing
attributes or types, etc. When a dialect has a dependency on another, i.e. when it constructs and/or
Expand Down
2 changes: 1 addition & 1 deletion mlir/include/mlir/Dialect/Func/IR/FuncOps.td
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def FuncOp : Func_Op<"func", [

// A function that returns its argument twice:
func.func @count(%x: i64) -> (i64, i64)
attributes {fruit: "banana"} {
attributes {fruit = "banana"} {
return %x, %x: i64, i64
}

Expand Down
Loading