Skip to content

Commit 8e16295

Browse files
committed
Minor fixes
1 parent 00b3d80 commit 8e16295

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ for i, el in enumerate(<collection> [, i_start]):
151151
Named Tuple
152152
-----------
153153
* **Tuple is an immutable and hashable list.**
154-
* **Named tuple is its subclass with named elements.**
154+
* **Named tuple is it's subclass with named elements.**
155155

156156
```python
157157
>>> from collections import namedtuple
@@ -1744,7 +1744,7 @@ import numpy as np
17441744

17451745
```python
17461746
<array> = np.array(<list>)
1747-
<array> = np.arange(from_inclusive, to_exclusive, step_size)
1747+
<array> = np.arange(from_inclusive, to_exclusive, ±step_size)
17481748
<array> = np.ones(<shape>)
17491749
<array> = np.random.randint(from_inclusive, to_exclusive, <shape>)
17501750
```

0 commit comments

Comments
 (0)