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` ``` }];