Skip to content

Commit 64b95c4

Browse files
committed
minor updates
1 parent cb29813 commit 64b95c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

dpnp/dpnp_iface_manipulation.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1885,7 +1885,7 @@ def ravel(a, order="C"):
18851885
Notes
18861886
-----
18871887
In row-major, C-style order, in two dimensions, the row index
1888-
varies the slowest, and the column index the quickest. This can
1888+
varies the slowest, and the column index the quickest. This can
18891889
be generalized to multiple dimensions, where row-major order
18901890
implies that the index along the first axis varies slowest, and
18911891
the index along the last quickest. The opposite holds for
@@ -1907,7 +1907,8 @@ def ravel(a, order="C"):
19071907
>>> np.ravel(x, order='F')
19081908
array([1, 4, 2, 5, 3, 6])
19091909
1910-
When ``order`` is 'A', it will preserve the array's 'C' or 'F' ordering:
1910+
When `order` is ``"A"``, it will preserve the array's
1911+
``"C"`` or ``"F"`` ordering:
19111912
19121913
>>> np.ravel(x.T)
19131914
array([1, 4, 2, 5, 3, 6])

0 commit comments

Comments
 (0)