@@ -263,7 +263,7 @@ class Int8(BaseInt[np.dtypes.Int8DType, np.int8]):
263263 @classmethod
264264 def from_native_dtype (cls , dtype : TBaseDType ) -> Self :
265265 """
266- Create an Int8 from a np.dtype('int8') instance.
266+ Create an Int8 from an np.dtype('int8') instance.
267267
268268 Parameters
269269 ----------
@@ -288,7 +288,7 @@ def from_native_dtype(cls, dtype: TBaseDType) -> Self:
288288
289289 def to_native_dtype (self : Self ) -> np .dtypes .Int8DType :
290290 """
291- Convert the Int8 instance to a np.dtype('int8') instance.
291+ Convert the Int8 instance to an np.dtype('int8') instance.
292292
293293 Returns
294294 -------
@@ -419,7 +419,7 @@ class UInt8(BaseInt[np.dtypes.UInt8DType, np.uint8]):
419419 @classmethod
420420 def from_native_dtype (cls , dtype : TBaseDType ) -> Self :
421421 """
422- Create a UInt8 from a np.dtype('uint8') instance.
422+ Create a UInt8 from an np.dtype('uint8') instance.
423423 """
424424 if cls ._check_native_dtype (dtype ):
425425 return cls ()
@@ -566,7 +566,7 @@ class Int16(BaseInt[np.dtypes.Int16DType, np.int16], HasEndianness):
566566 @classmethod
567567 def from_native_dtype (cls , dtype : TBaseDType ) -> Self :
568568 """
569- Create an instance of this data type from a np.dtype('int16') instance.
569+ Create an instance of this data type from an np.dtype('int16') instance.
570570
571571 Parameters
572572 ----------
@@ -591,7 +591,7 @@ def from_native_dtype(cls, dtype: TBaseDType) -> Self:
591591
592592 def to_native_dtype (self ) -> np .dtypes .Int16DType :
593593 """
594- Convert the data type to a np.dtype('int16') instance.
594+ Convert the data type to an np.dtype('int16') instance.
595595
596596 Returns
597597 -------
@@ -728,7 +728,7 @@ class UInt16(BaseInt[np.dtypes.UInt16DType, np.uint16], HasEndianness):
728728 @classmethod
729729 def from_native_dtype (cls , dtype : TBaseDType ) -> Self :
730730 """
731- Create an instance of this data type from a np.dtype('uint16') instance.
731+ Create an instance of this data type from an np.dtype('uint16') instance.
732732
733733 Parameters
734734 ----------
@@ -753,7 +753,7 @@ def from_native_dtype(cls, dtype: TBaseDType) -> Self:
753753
754754 def to_native_dtype (self ) -> np .dtypes .UInt16DType :
755755 """
756- Convert the data type to a np.dtype('uint16') instance.
756+ Convert the data type to an np.dtype('uint16') instance.
757757
758758 Returns
759759 -------
@@ -911,7 +911,7 @@ def _check_native_dtype(cls: type[Self], dtype: TBaseDType) -> TypeGuard[np.dtyp
911911 @classmethod
912912 def from_native_dtype (cls : type [Self ], dtype : TBaseDType ) -> Self :
913913 """
914- Create an Int32 from a np.dtype('int32') instance.
914+ Create an Int32 from an np.dtype('int32') instance.
915915
916916 Parameters
917917 ----------
@@ -936,7 +936,7 @@ def from_native_dtype(cls: type[Self], dtype: TBaseDType) -> Self:
936936
937937 def to_native_dtype (self : Self ) -> np .dtypes .Int32DType :
938938 """
939- Convert the Int32 instance to a np.dtype('int32') instance.
939+ Convert the Int32 instance to an np.dtype('int32') instance.
940940
941941 Returns
942942 -------
@@ -1073,7 +1073,7 @@ class UInt32(BaseInt[np.dtypes.UInt32DType, np.uint32], HasEndianness):
10731073 @classmethod
10741074 def from_native_dtype (cls , dtype : TBaseDType ) -> Self :
10751075 """
1076- Create a UInt32 from a np.dtype('uint32') instance.
1076+ Create a UInt32 from an np.dtype('uint32') instance.
10771077
10781078 Parameters
10791079 ----------
@@ -1231,7 +1231,7 @@ class Int64(BaseInt[np.dtypes.Int64DType, np.int64], HasEndianness):
12311231 @classmethod
12321232 def from_native_dtype (cls , dtype : TBaseDType ) -> Self :
12331233 """
1234- Create an Int64 from a np.dtype('int64') instance.
1234+ Create an Int64 from an np.dtype('int64') instance.
12351235
12361236 Parameters
12371237 ----------
0 commit comments