File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
include/mlir/Dialect/Func/IR Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -756,7 +756,7 @@ The available directives are as follows:
756756
757757* ` ref ( input ) `
758758
759- - Represents a reference to the a variable or directive, that must have
759+ - Represents a reference to a variable or directive, that must have
760760 already been resolved, that may be used as a parameter to a ` custom `
761761 directive.
762762 - Used to pass previously parsed entities to custom directives.
Original file line number Diff line number Diff line change @@ -133,7 +133,7 @@ void MyOp::setOtherValue(StringAttr newValue);
133133
134134### Dependent Dialects
135135
136- MLIR has a very large ecosystem, and contains dialects that server many different purposes. It
136+ MLIR has a very large ecosystem, and contains dialects that serve many different purposes. It
137137is quite common, given the above, that dialects may want to reuse certain components from other
138138dialects. This may mean generating operations from those dialects during canonicalization, reusing
139139attributes or types, etc. When a dialect has a dependency on another, i.e. when it constructs and/or
Original file line number Diff line number Diff line change @@ -251,7 +251,7 @@ def FuncOp : Func_Op<"func", [
251251
252252 // A function that returns its argument twice:
253253 func.func @count(%x: i64) -> (i64, i64)
254- attributes {fruit: "banana"} {
254+ attributes {fruit = "banana"} {
255255 return %x, %x: i64, i64
256256 }
257257
You can’t perform that action at this time.
0 commit comments