From: Jin Mingjian Date: Tue, 17 Dec 2019 18:25:19 +0000 (-0800) Subject: fix a typo in OpDefinitions doc X-Git-Tag: llvmorg-11-init~1466^2~51 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9f45a224412c8381de418d78935075b318352864;p=platform%2Fupstream%2Fllvm.git fix a typo in OpDefinitions doc [{ matched with }], rather than ]} Closes tensorflow/mlir#320 COPYBARA_INTEGRATE_REVIEW=https://github.com/tensorflow/mlir/pull/320 from jinmingjian:patch-1 6b0870d02284f023bda2b28380960eb31d34f3b6 PiperOrigin-RevId: 286007638 --- diff --git a/mlir/g3doc/OpDefinitions.md b/mlir/g3doc/OpDefinitions.md index 0e786a0..7b7105c 100644 --- a/mlir/g3doc/OpDefinitions.md +++ b/mlir/g3doc/OpDefinitions.md @@ -505,7 +505,7 @@ def MyOp : ... { let builders = [ OpBuilder<"Builder *builder, OperationState &state, float val = 0.5f", [{ state.addAttribute("attr", builder->getF32FloatAttr(val)); - ]}> + }]> ]; } ```