From 756c511fc8aa55cd71ab24cb62d465d75e840dac Mon Sep 17 00:00:00 2001 From: Alex Merose Date: Fri, 24 Jan 2025 15:00:29 -0800 Subject: [PATCH] Copy/editing Co-authored-by: Tom White --- cubed/array_api/dtypes.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cubed/array_api/dtypes.py b/cubed/array_api/dtypes.py index 626f0ecf..9af0188b 100644 --- a/cubed/array_api/dtypes.py +++ b/cubed/array_api/dtypes.py @@ -109,7 +109,7 @@ def _validate_and_define_dtype(x, dtype=None, *, allowed_dtypes=("numeric",), fn elif x.dtype in _signed_integer_dtypes: dtype = dtypes["integral"] elif x.dtype in _unsigned_integer_dtypes: - # Type arithemetic to produce an unsinged integer dtype at the same default precision. + # Type arithmetic to produce an unsigned integer dtype at the same default precision. dtype = nxp.dtype(dtypes["integral"].str.replace("i", "u")) elif x.dtype == _complex_floating_dtypes: dtype = dtypes["complex floating"]