From 360cc2f62130e4d4705320106a08dec56277bcf4 Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Wed, 13 Mar 2024 12:33:47 -0700 Subject: [PATCH] reshape(): Remove "nullable" in prose description of newShape Per #388, the change #505 removed null value support in reshape()'s newShape parameter. That pull request missed updating the prose description to match. --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index d096cb64..5033a67f 100644 --- a/index.bs +++ b/index.bs @@ -5183,7 +5183,7 @@ partial interface MLGraphBuilder {
**Arguments:** - *input*: an {{MLOperand}}. The input tensor. - - *newShape*: a sequence of [=nullable type|nullable=] {{unsigned long}}. The shape of the output tensor. + - *newShape*: a sequence of {{unsigned long}}. The shape of the output tensor. The number of elements implied by *newShape* must be the same as the number of elements in the input tensor.