From 8557b4102f87410b36125278d4c595529a5eddc3 Mon Sep 17 00:00:00 2001 From: "Christine P. Chai" Date: Sun, 18 Jan 2026 22:43:52 -0800 Subject: [PATCH 1/3] docs: an python object -> a python object --- src/zarr/core/dtype/wrapper.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ---------- From 6ddff4f0b8f966e5041c85c2990686e3e814629a Mon Sep 17 00:00:00 2001 From: "Christine P. Chai" Date: Sun, 18 Jan 2026 22:45:54 -0800 Subject: [PATCH 2/3] docs: a XML -> an XML --- docs/contributing.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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). From df2081bed16b544896ed0dae343139121a7fca01 Mon Sep 17 00:00:00 2001 From: "Christine P. Chai" Date: Sun, 18 Jan 2026 22:47:05 -0800 Subject: [PATCH 3/3] docs: a S3 -> an S3 --- docs/user-guide/storage.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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