diff --git a/docs/contributing.md b/docs/contributing.md index 3bbbcf6ea4..e42ba0edf1 100644 --- a/docs/contributing.md +++ b/docs/contributing.md @@ -143,7 +143,7 @@ Zarr strives to maintain 100% test coverage under the latest Python stable relea hatch env run --env test.py3.12-2.2-optional run-coverage ``` -will automatically run the test suite with coverage and produce a XML coverage report. This should be 100% before code can be accepted into the main code base. +will automatically run the test suite with coverage and produce an XML coverage report. This should be 100% before code can be accepted into the main code base. You can also generate an HTML coverage report by running: @@ -273,4 +273,4 @@ performance benchmarks as part of our test suite. The benchmarks can be are foun By default pytest is configured to run these benchmarks as plain tests (i.e., no benchmarking). To run a benchmark with timing measurements, use the `--benchmark-enable` when invoking `pytest`. -The benchmarks are run as part of the continuous integration suite through [codspeed](https://codspeed.io/zarr-developers/zarr-python). \ No newline at end of file +The benchmarks are run as part of the continuous integration suite through [codspeed](https://codspeed.io/zarr-developers/zarr-python). diff --git a/docs/user-guide/storage.md b/docs/user-guide/storage.md index 2b200c27b9..82b576b889 100644 --- a/docs/user-guide/storage.md +++ b/docs/user-guide/storage.md @@ -138,7 +138,7 @@ print(group) ``` The type of filesystem (e.g. S3, https, etc..) is inferred from the scheme of the url (e.g. s3 for "**s3**://noaa-nwm-retro-v2-zarr-pds"). -In case a specific filesystem is needed, one can explicitly create it. For example to create a S3 filesystem: +In case a specific filesystem is needed, one can explicitly create it. For example to create an S3 filesystem: ```python exec="true" session="storage" source="above" result="ansi" # Note: requires s3fs to be installed diff --git a/src/zarr/core/dtype/wrapper.py b/src/zarr/core/dtype/wrapper.py index e44449585b..fdc5f747f0 100644 --- a/src/zarr/core/dtype/wrapper.py +++ b/src/zarr/core/dtype/wrapper.py @@ -191,7 +191,7 @@ def to_json(self, zarr_format: ZarrFormat) -> DTypeSpec_V2 | DTypeSpec_V3: @abstractmethod def _check_scalar(self, data: object) -> bool: """ - Check that an python object is a valid scalar value for the wrapped data type. + Check that a python object is a valid scalar value for the wrapped data type. Parameters ----------