Skip to content

Commit 1001994

Browse files
jhammandstansby
andauthored
Apply suggestions from code review
Co-authored-by: David Stansby <[email protected]>
1 parent 01bc352 commit 1001994

File tree

4 files changed

+7
-9
lines changed

4 files changed

+7
-9
lines changed

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ Zarr is a file storage format for chunked, compressed, N-dimensional arrays base
5454
Guide
5555
^^^^^
5656

57-
The user guide provides a detailed guide for how to use Zarr-Python.
57+
A detailed guide for how to use Zarr-Python.
5858

5959
+++
6060

@@ -64,7 +64,7 @@ Zarr is a file storage format for chunked, compressed, N-dimensional arrays base
6464
:color: dark
6565
:click-parent:
6666

67-
To the User Guide
67+
To the user guide
6868

6969
.. grid-item-card::
7070
:img-top: _static/index_api.svg

docs/user-guide/performance.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Optimizing Performance
55
.. ipython::
66
:suppress:
77

8-
In [144]: rm -r data/
8+
rm -r data/
99

1010
.. _tutorial_chunks:
1111

docs/user-guide/storage.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.. _tutorial_storage:
1+
.. _guide_storage:
22

33
Storage
44
=======
@@ -22,17 +22,17 @@ to Zarr's top level API will result in the store being created automatically.
2222
2323
import zarr
2424
25-
# implicitly create a writable LocalStore
25+
# Implicitly create a writable LocalStore
2626
zarr.open_group("data/foo/bar", mode="w")
2727
28-
# implicitly create a read-only FsspecStore
28+
# Implicitly create a read-only FsspecStore
2929
zarr.open_group(
3030
"s3://noaa-nwm-retro-v2-zarr-pds",
3131
mode="r",
3232
storage_options={"anon": True}
3333
)
3434
35-
# implicitly creates a MemoryStore
35+
# Implicitly creates a MemoryStore
3636
data = {}
3737
zarr.open_group(data, mode="w")
3838

pyproject.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,7 @@ docs = [
8686
'pydata-sphinx-theme',
8787
'numpydoc',
8888
'numcodecs[msgpack]',
89-
'msgpack',
9089
'ipython',
91-
'pickleshare',
9290
'rich',
9391
's3fs',
9492
]

0 commit comments

Comments
 (0)