diff --git a/index.bs b/index.bs
index 27bfaad6..5f10b1bf 100644
--- a/index.bs
+++ b/index.bs
@@ -1104,7 +1104,7 @@ dictionary MLOperandDescriptor {
:: The operand data type.
: shape
- :: The shape of the operand. It is empty for scalar operands, and non-empty for tensor operands.
+ :: The list of dimensions of the operand. It is empty for scalar operands.
@@ -2736,7 +2736,7 @@ partial interface MLGraphBuilder {
### expand ### {#api-mlgraphbuilder-expand}
-Expand any dimension of size 1 of the input tensor to a larger size according to the new shape. The expansion is consistent with [[!numpy-broadcasting-rule]]. The input tensor must be [=unidirectionally broadcastable=] to the new shape; its shape must be of size 1 or match the sizes of the corresponding output dimensions according to the new shape.
+Expand any dimension of size 1 of the input tensor to a larger size according to the new shape. The expansion is consistent with [[!numpy-broadcasting-rule]]. The input tensor must be [=unidirectionally broadcastable=] to the new shape; each dimension must be of size 1 or match the sizes of the corresponding output dimensions according to the new shape.