Skip to content

Commit 68ac329

Browse files
committed
update docstrings
1 parent 1a3a502 commit 68ac329

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/zarr/api/synchronous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -792,7 +792,7 @@ def create_array(
792792
chunk to bytes.
793793
794794
For Zarr format 3, a "filter" is a codec that takes an array and returns an array,
795-
and these values must be instances of ``ArrayArrayCodec``, or dict representations
795+
and these values must be instances of ``ArrayArrayCodec``, or dict or string representations
796796
of ``ArrayArrayCodec``.
797797
If no ``filters`` are provided, a default set of filters will be used.
798798
These defaults can be changed by modifying the value of ``array.v3_default_filters``

src/zarr/core/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4053,7 +4053,7 @@ async def create_array(
40534053
chunk to bytes.
40544054
40554055
For Zarr format 3, a "filter" is a codec that takes an array and returns an array,
4056-
and these values must be instances of ``ArrayArrayCodec``, or dict representations
4056+
and these values must be instances of ``ArrayArrayCodec``, or dict or string representations
40574057
of ``ArrayArrayCodec``.
40584058
If no ``filters`` are provided, a default set of filters will be used.
40594059
These defaults can be changed by modifying the value of ``array.v3_default_filters``

src/zarr/core/group.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,7 +1045,7 @@ async def create_array(
10451045
chunk to bytes.
10461046
10471047
For Zarr format 3, a "filter" is a codec that takes an array and returns an array,
1048-
and these values must be instances of ``ArrayArrayCodec``, or dict representations
1048+
and these values must be instances of ``ArrayArrayCodec``, or dict or string representations
10491049
of ``ArrayArrayCodec``.
10501050
If no ``filters`` are provided, a default set of filters will be used.
10511051
These defaults can be changed by modifying the value of ``array.v3_default_filters``
@@ -2280,7 +2280,7 @@ def create_array(
22802280
chunk to bytes.
22812281
22822282
For Zarr format 3, a "filter" is a codec that takes an array and returns an array,
2283-
and these values must be instances of ``ArrayArrayCodec``, or dict representations
2283+
and these values must be instances of ``ArrayArrayCodec``, or dict or string representations
22842284
of ``ArrayArrayCodec``.
22852285
If no ``filters`` are provided, a default set of filters will be used.
22862286
These defaults can be changed by modifying the value of ``array.v3_default_filters``
@@ -2678,7 +2678,7 @@ def array(
26782678
chunk to bytes.
26792679
26802680
For Zarr format 3, a "filter" is a codec that takes an array and returns an array,
2681-
and these values must be instances of ``ArrayArrayCodec``, or dict representations
2681+
and these values must be instances of ``ArrayArrayCodec``, or dict or string representations
26822682
of ``ArrayArrayCodec``.
26832683
If no ``filters`` are provided, a default set of filters will be used.
26842684
These defaults can be changed by modifying the value of ``array.v3_default_filters``

0 commit comments

Comments
 (0)