Skip to content

Commit c64049c

Browse files
committed
wording
1 parent 8461223 commit c64049c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/zarr/api/asynchronous.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ async def consolidate_metadata(
197197

198198
if any(m.zarr_format == 3 for m in members_metadata.values()):
199199
warnings.warn(
200-
"Consolidated metadata is currently not part in the Zarr version 3 specification and "
200+
"Consolidated metadata is currently not part in the Zarr version 3 specification. It "
201201
"may not be supported by other zarr implementations and may change in the future.",
202202
category=UserWarning,
203203
stacklevel=1,

src/zarr/codecs/vlen_utf8.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
class VLenUTF8Codec(ArrayBytesCodec):
2929
def __init__(self) -> None:
3030
warn(
31-
"The codec `vlen-utf8` is currently not part in the Zarr version 3 specification and "
31+
"The codec `vlen-utf8` is currently not part in the Zarr version 3 specification. It "
3232
"may not be supported by other zarr implementations and may change in the future.",
3333
category=UserWarning,
3434
stacklevel=2,
@@ -83,7 +83,7 @@ def compute_encoded_size(self, input_byte_length: int, _chunk_spec: ArraySpec) -
8383
class VLenBytesCodec(ArrayBytesCodec):
8484
def __init__(self) -> None:
8585
warn(
86-
"The codec `vlen-bytes` is currently not part in the Zarr version 3 specification and "
86+
"The codec `vlen-bytes` is currently not part in the Zarr version 3 specificatio. It "
8787
"may not be supported by other zarr implementations and may change in the future.",
8888
category=UserWarning,
8989
stacklevel=2,

src/zarr/core/array.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -583,7 +583,7 @@ async def _create_v3(
583583

584584
if dtype.kind in "UTS":
585585
warn(
586-
f"The dtype `{dtype}` is currently not part in the Zarr version 3 specification and "
586+
f"The dtype `{dtype}` is currently not part in the Zarr version 3 specification. It "
587587
"may not be supported by other zarr implementations and may change in the future.",
588588
category=UserWarning,
589589
stacklevel=2,

0 commit comments

Comments
 (0)