We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab7bfb commit 319cf48Copy full SHA for 319cf48
README.md
@@ -1716,14 +1716,14 @@ import numpy as np
1716
<array> = np.random.randint(from_inclusive, to_exclusive, <shape>)
1717
```
1718
1719
-#### Shape is a tuple of dimension sizes:
+#### Shape is a tuple of dimension sizes.
1720
```python
1721
<array>.shape = <shape>
1722
<view> = <array>.reshape(<shape>)
1723
<view> = np.broadcast_to(<array>, <shape>)
1724
1725
1726
-#### Axis is an index of dimension that gets collapsed:
+#### Axis is an index of dimension that gets collapsed.
1727
1728
<array> = <array>.sum(<axis>)
1729
<array> = <array>.argmin(<axis>)
0 commit comments