@@ -258,7 +258,7 @@ class Int8(BaseInt[np.dtypes.Int8DType, np.int8]):
258258 """
259259 A Zarr data type for arrays containing 8-bit signed integers.
260260
261- Wraps the NumPy ``np.dtypes.Int8DType`` data type. Scalars for this data type are
261+ Wraps the ``np.dtypes.Int8DType`` data type. Scalars for this data type are
262262 instances of ``np.int8``.
263263
264264 Attributes
@@ -413,7 +413,7 @@ class UInt8(BaseInt[np.dtypes.UInt8DType, np.uint8]):
413413 """
414414 A Zarr data type for arrays containing 8-bit unsigned integers.
415415
416- Wraps the NumPy ``np.dtypes.UInt8DType`` data type. Scalars for this data type are instances of ``np.uint8``.
416+ Wraps the ``np.dtypes.UInt8DType`` data type. Scalars for this data type are instances of ``np.uint8``.
417417
418418 Attributes
419419 ----------
@@ -557,7 +557,7 @@ class Int16(BaseInt[np.dtypes.Int16DType, np.int16], HasEndianness):
557557 """
558558 A Zarr data type for arrays containing 16-bit signed integers.
559559
560- Wraps the NumPy ``np.dtypes.Int16DType`` data type. Scalars for this data type are instances of
560+ Wraps the ``np.dtypes.Int16DType`` data type. Scalars for this data type are instances of
561561 ``np.int16``.
562562
563563 Attributes
@@ -717,7 +717,7 @@ class UInt16(BaseInt[np.dtypes.UInt16DType, np.uint16], HasEndianness):
717717 """
718718 A Zarr data type for arrays containing 16-bit unsigned integers.
719719
720- Wraps the NumPy ``np.dtypes.UInt16DType`` data type. Scalars for this data type are instances of
720+ Wraps the ``np.dtypes.UInt16DType`` data type. Scalars for this data type are instances of
721721 ``np.uint16``.
722722
723723 Attributes
@@ -877,7 +877,7 @@ class Int32(BaseInt[np.dtypes.Int32DType, np.int32], HasEndianness):
877877 """
878878 A Zarr data type for arrays containing 32-bit signed integers.
879879
880- Wraps the NumPy ``np.dtypes.Int32DType`` data type. Scalars for this data type are instances of
880+ Wraps the ``np.dtypes.Int32DType`` data type. Scalars for this data type are instances of
881881 ``np.int32``.
882882
883883 Attributes
@@ -1037,7 +1037,7 @@ class UInt32(BaseInt[np.dtypes.UInt32DType, np.uint32], HasEndianness):
10371037 """
10381038 A Zarr data type for arrays containing 32-bit unsigned integers.
10391039
1040- Wraps the NumPy ``np.dtypes.UInt32DType`` data type. Scalars for this data type are instances of
1040+ Wraps the ``np.dtypes.UInt32DType`` data type. Scalars for this data type are instances of
10411041 ``np.uint32``.
10421042
10431043 Attributes
@@ -1193,7 +1193,7 @@ class Int64(BaseInt[np.dtypes.Int64DType, np.int64], HasEndianness):
11931193 """
11941194 A Zarr data type for arrays containing 64-bit signed integers.
11951195
1196- Wraps the NumPy ``np.dtypes.Int64DType`` data type. Scalars for this data type are instances of
1196+ Wraps the ``np.dtypes.Int64DType`` data type. Scalars for this data type are instances of
11971197 ``np.int64``.
11981198
11991199 Attributes
@@ -1349,7 +1349,7 @@ class UInt64(BaseInt[np.dtypes.UInt64DType, np.uint64], HasEndianness):
13491349 """
13501350 A Zarr data type for arrays containing 64-bit unsigned integers.
13511351
1352- Wraps the NumPy ``np.dtypes.UInt64DType`` data type. Scalars for this data type
1352+ Wraps the ``np.dtypes.UInt64DType`` data type. Scalars for this data type
13531353 are instances of ``np.uint64``.
13541354
13551355 Attributes
0 commit comments