Skip to content

Commit 8263d3e

Browse files
committed
doco
1 parent 59f9239 commit 8263d3e

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
@@ -69,13 +69,13 @@ Resize the array and add more data:
6969
>>> z.resize(20000, 1000)
7070
>>> z
7171
zarr.ext.Array((20000, 1000), int32, chunks=(1000, 100), nbytes=76.3M, cbytes=2.0M, cratio=38.5, cname=blosclz, clevel=5, shuffle=1)
72-
>>> z[10000:, :] = np.arange(10000000, dtype='i4').reshape((10000, 1000))
72+
>>> z[10000:, :] = np.arange(10000000, dtype='i4').reshape(10000, 1000)
7373
>>> z
7474
zarr.ext.Array((20000, 1000), int32, chunks=(1000, 100), nbytes=76.3M, cbytes=4.0M, cratio=19.3, cname=blosclz, clevel=5, shuffle=1)
7575

7676
```
7777

78-
For convenience, an `append` method is available, which can be used to
78+
For convenience, an `append` method is also available, which can be used to
7979
append data to any axis:
8080

8181
```python

0 commit comments

Comments
 (0)