From ab1276c1ba4af925da92d378bedc93a03eae3ed5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20M=C3=BCller?= Date: Thu, 12 Sep 2024 14:31:23 +0200 Subject: [PATCH] [Substrait] Fix assembly format of field_reference in doc. (NFC) (#859) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ingo Müller --- include/structured/Dialect/Substrait/IR/SubstraitOps.td | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/structured/Dialect/Substrait/IR/SubstraitOps.td b/include/structured/Dialect/Substrait/IR/SubstraitOps.td index f3d77697e63c..6eeb62791d7c 100644 --- a/include/structured/Dialect/Substrait/IR/SubstraitOps.td +++ b/include/structured/Dialect/Substrait/IR/SubstraitOps.td @@ -262,7 +262,7 @@ def Substrait_FieldReferenceOp : Substrait_ExpressionOp<"field_reference", [ ```mlir %0 = ... - %1 = field_reference %0[[0]] : tuple + %1 = field_reference %0[0] : tuple // %1 is of type `si32` ``` }];