Unverified Commit 2cda4f8e authored by Geoffrey Martin-Noble's avatar Geoffrey Martin-Noble Committed by GitHub
Browse files

[mlir] Fix syntax example for tensor.from_elements

Parens are not used here
parent 6f7483b1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -308,7 +308,7 @@ def Tensor_FromElementsOp : Tensor_Op<"from_elements", [
    Example:

    ```mlir
    tensor.from_elements(i_1, ..., i_N) :  tensor<Nxindex>
    tensor.from_elements i_1, ..., i_N :  tensor<Nxindex>
    ```
  }];