Skip to content

Commit fbddbd0

Browse files
committed
Fix nested list
1 parent 7597b74 commit fbddbd0

File tree

1 file changed

+11
-13
lines changed

1 file changed

+11
-13
lines changed

spec/API_specification/broadcasting.rst

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -39,29 +39,27 @@ The results of the element-wise operation must be stored in an array having a sh
3939

4040
#. Repeat, while ``i >= 0``
4141

42-
#. Let ``n1`` be ``N1 - N + i``.
42+
#. Let ``n1`` be ``N1 - N + i``.
4343

44-
#. If ``n1 >= 0``, let ``d1`` be the size of dimension ``n1`` for array ``A`` (i.e., the result of ``shape1[n1]``); else, let ``d1`` be ``1``.
44+
#. If ``n1 >= 0``, let ``d1`` be the size of dimension ``n1`` for array ``A`` (i.e., the result of ``shape1[n1]``); else, let ``d1`` be ``1``.
4545

46-
#. Let ``n2`` be ``N2 - N + i``.
46+
#. Let ``n2`` be ``N2 - N + i``.
4747

48-
#. If ``n2 >= 0``, let ``d2`` be the size of dimension ``n2`` for array ``B`` (i.e., the result of ``shape2[n2]``); else, let ``d2`` be ``1``.
48+
#. If ``n2 >= 0``, let ``d2`` be the size of dimension ``n2`` for array ``B`` (i.e., the result of ``shape2[n2]``); else, let ``d2`` be ``1``.
4949

50-
#. If ``d1 == 1``, then
50+
#. If ``d1 == 1``, then set the ``i``\th element of ``shape`` to ``d2``.
5151

52-
- set the ``i``\th element of ``shape`` to ``d2``.
52+
#. Else, if ``d2 == 1``, then
5353

54-
#. Else, if ``d2 == 1``, then
54+
- set the ``i``\th element of ``shape`` to ``d1``.
5555

56-
- set the ``i``\th element of ``shape`` to ``d1``.
56+
#. Else, if ``d1 == d2``, then
5757

58-
#. Else, if ``d1 == d2``, then
58+
- set the ``i``\th element of ``shape`` to ``d1``.
5959

60-
- set the ``i``\th element of ``shape`` to ``d1``.
60+
#. Else, throw an exception.
6161

62-
#. Else, throw an exception.
63-
64-
#. Set ``i`` to ``i-1``.
62+
#. Set ``i`` to ``i-1``.
6563

6664
#. Let ``tuple(shape)`` be the shape of the result array.
6765

0 commit comments

Comments
 (0)