diff options
Diffstat (limited to 'mlir/examples/toy/Ch4/include/toy/Ops.td')
| -rw-r--r-- | mlir/examples/toy/Ch4/include/toy/Ops.td | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mlir/examples/toy/Ch4/include/toy/Ops.td b/mlir/examples/toy/Ch4/include/toy/Ops.td index 8cfbe90fc30..aec1cc3cfc9 100644 --- a/mlir/examples/toy/Ch4/include/toy/Ops.td +++ b/mlir/examples/toy/Ch4/include/toy/Ops.td @@ -44,7 +44,7 @@ class Toy_Op<string mnemonic, list<OpTrait> traits = []> : // Toy Operations //===----------------------------------------------------------------------===// -// We define a toy operation by inherting from our base 'Toy_Op' class above. +// We define a toy operation by inheriting from our base 'Toy_Op' class above. // Here we provide the mnemonic and a list of traits for the operation. The // constant operation is marked as 'NoSideEffect' as it is a pure operation // and may be removed if dead. |

