From 311f2ac14094f76b7baef8c82fc8c284e7dc87bb Mon Sep 17 00:00:00 2001 From: Joshua Bell Date: Mon, 22 Jan 2024 08:43:01 -0800 Subject: [PATCH] Bug fix: Correct indentation of an iteration substep (#522) Bikeshed markdown requires the indentation to be at least 4 spaces. --- index.bs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.bs b/index.bs index 354b0c5e..465b34ab 100644 --- a/index.bs +++ b/index.bs @@ -4580,7 +4580,7 @@ partial interface MLGraphBuilder { 1. If |shapeA|[|sizeA| - 1] is not equal to |shapeB|[0], then [=exception/throw=] an "{{OperationError}}" {{DOMException}}. 1. Let |shape| be an array whose size |size| is the maximum of |sizeA| and |sizeB|. 1. [=map/For each=] |index| in [=the range=] 0 to |size|, exclusive: - 1. Set |shape|[|index|] to the maximum of |shapeA|[|index|] and |shapeB|[|index|]. + 1. Set |shape|[|index|] to the maximum of |shapeA|[|index|] and |shapeB|[|index|]. 1. Return |shape|.