Fix a comment in the OperationInterface example.
authorStephan Herhut <herhut@google.com>
Mon, 7 Oct 2019 16:26:58 +0000 (09:26 -0700)
committerA. Unique TensorFlower <gardener@tensorflow.org>
Mon, 7 Oct 2019 16:27:25 +0000 (09:27 -0700)
PiperOrigin-RevId: 273308494

mlir/g3doc/OpDefinitions.md

index d852de7..b037f9c 100644 (file)
@@ -376,7 +376,7 @@ def MyInterface : OpInterface<"MyInterface"> {
 
 // Interfaces can optionally be wrapped inside DeclareOpInterfaceMethods. This
 // would result in autogenerating declarations for members `foo`, `bar` and
-// `fooStatic`. Methods without bodies are not declared inside the op
+// `fooStatic`. Methods with bodies are not declared inside the op
 // declaration but instead handled by the op interface trait directly.
 def OpWithInferTypeInterfaceOp : Op<...
     [DeclareOpInterfaceMethods<MyInterface>]> { ... }