@@ -650,10 +650,10 @@ def create(
650650 shape : int or tuple of ints
651651 Array shape.
652652 chunks : int or tuple of ints, optional
653- Chunk shape. If True, will be guessed from `shape` and `dtype`. If
654- False, will be set to `shape`, i.e., single chunk for the whole array.
653+ Chunk shape. If True, will be guessed from `` shape`` and `` dtype` `. If
654+ False, will be set to `` shape` `, i.e., single chunk for the whole array.
655655 If an int, the chunk size in each dimension will be given by the value
656- of `chunks`. Default is True.
656+ of `` chunks` `. Default is True.
657657 dtype : str or dtype, optional
658658 NumPy dtype.
659659 compressor : Codec, optional
@@ -676,12 +676,12 @@ def create(
676676 synchronizer : object, optional
677677 Array synchronizer.
678678 overwrite : bool, optional
679- If True, delete all pre-existing data in `store` at `path` before
679+ If True, delete all pre-existing data in `` store`` at `` path` ` before
680680 creating the array.
681681 path : str, optional
682682 Path under which array is stored.
683683 chunk_store : StoreLike or None, default=None
684- Separate storage for chunks. If not provided, `store` will be used
684+ Separate storage for chunks. If not provided, `` store` ` will be used
685685 for storage of both chunks and metadata.
686686 filters : Iterable[Codec] | Literal["auto"], optional
687687 Iterable of filters to apply to each chunk of the array, in order, before serializing that
@@ -698,7 +698,7 @@ def create(
698698 type of the array and the Zarr format specified. For all data types in Zarr V3, and most
699699 data types in Zarr V2, the default filters are empty. The only cases where default filters
700700 are not empty is when the Zarr format is 2, and the data type is a variable-length data type like
701- ` :class:zarr.dtype.VariableLengthUTF8` or ` :class:zarr.dtype.VariableLengthUTF8`. In these cases,
701+ :class:` zarr.dtype.VariableLengthUTF8` or :class:` zarr.dtype.VariableLengthUTF8`. In these cases,
702702 the default filters contains a single element which is a codec specific to that particular data type.
703703
704704 To create an array with no filters, provide an empty iterable or the value ``None``.
@@ -863,7 +863,7 @@ def create_array(
863863 type of the array and the Zarr format specified. For all data types in Zarr V3, and most
864864 data types in Zarr V2, the default filters are empty. The only cases where default filters
865865 are not empty is when the Zarr format is 2, and the data type is a variable-length data type like
866- ` :class:zarr.dtype.VariableLengthUTF8` or ` :class:zarr.dtype.VariableLengthUTF8`. In these cases,
866+ :class:` zarr.dtype.VariableLengthUTF8` or :class:` zarr.dtype.VariableLengthUTF8`. In these cases,
867867 the default filters contains a single element which is a codec specific to that particular data type.
868868
869869 To create an array with no filters, provide an empty iterable or the value ``None``.
@@ -915,7 +915,7 @@ def create_array(
915915 Ignored otherwise.
916916 overwrite : bool, default False
917917 Whether to overwrite an array with the same name in the store, if one exists.
918- If `True`, all existing paths in the store will be deleted.
918+ If `` True` `, all existing paths in the store will be deleted.
919919 config : ArrayConfigLike, optional
920920 Runtime configuration for the array.
921921 write_data : bool
0 commit comments