Skip to content

Commit 4b83302

Browse files
More typos found by codespell (#1073)
1 parent 5c602cb commit 4b83302

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

docs/release.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@ Documentation
1616

1717
* Typo fixes to close quotes. By :user:`Pavithra Eswaramoorthy <pavithraes>`
1818

19+
Maintenance
20+
~~~~~~~~~~~
21+
22+
* Fix spelling.
23+
By :user:`Dimitri Papadopoulos Orfanos <DimitriPapadopoulos>`, :issue:`1073`.
24+
1925

2026
.. _release_2.12.0:
2127

docs/tutorial.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -897,7 +897,7 @@ The second invocation here will be much faster. Note that the ``storage_options`
897897
have become more complex here, to account for the two parts of the supplied
898898
URL.
899899

900-
It is also possible to initialize the filesytem outside of Zarr and then pass
900+
It is also possible to initialize the filesystem outside of Zarr and then pass
901901
it through. This requires creating an :class:`zarr.storage.FSStore` object
902902
explicitly. For example::
903903

zarr/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ class Array:
153153

154154
def __init__(
155155
self,
156-
store: Any, # BaseStore not stricly required due to normalize_store_arg
156+
store: Any, # BaseStore not strictly required due to normalize_store_arg
157157
path=None,
158158
read_only=False,
159159
chunk_store=None,

zarr/meta.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def get_extended_dtype_info(dtype) -> dict:
8181
fallback=None,
8282
)
8383
else:
84-
raise ValueError(f"Unsupport dtype: {dtype}")
84+
raise ValueError(f"Unsupported dtype: {dtype}")
8585

8686

8787
class Metadata2:
@@ -399,7 +399,7 @@ def decode_hierarchy_metadata(
399399
"metadata_key_suffix",
400400
"extensions",
401401
}:
402-
raise ValueError(f"Unexpected keys in metdata. meta={meta}")
402+
raise ValueError(f"Unexpected keys in metadata. meta={meta}")
403403
return meta
404404

405405
@classmethod

0 commit comments

Comments
 (0)