Fix Documentation OpDefinitions.md
authorDenis Khalikov <khalikov.denis@huawei.com>
Fri, 27 Sep 2019 14:46:40 +0000 (07:46 -0700)
committerA. Unique TensorFlower <gardener@tensorflow.org>
Fri, 27 Sep 2019 15:08:25 +0000 (08:08 -0700)
Add missing semicolon for the builders example.

Closes tensorflow/mlir#150

COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/mlir/pull/150 from denis0x0D:sandbox/doc_fix 07e3680e678bf141a70af7747136e9fde7b4cc0a
PiperOrigin-RevId: 271568527

mlir/g3doc/OpDefinitions.md

index bc0d753..ff7192c 100644 (file)
@@ -423,7 +423,7 @@ def MyOp : ... {
     OpBuilder<"Builder *builder, OperationState &state, float val = 0.5f", [{
       state.addAttribute("attr", builder->getF32FloatAttr(val));
     ]}>
-  ]
+  ];
 }
 ```