From c5bf11eac7a9236172a8a67221a30ee31e879e9f Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 16 Feb 2026 12:01:59 -0500 Subject: [PATCH 1/5] spelling: ; otherwise, Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- array_api_compat/common/_helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array_api_compat/common/_helpers.py b/array_api_compat/common/_helpers.py index 8194a083..bc90d208 100644 --- a/array_api_compat/common/_helpers.py +++ b/array_api_compat/common/_helpers.py @@ -593,7 +593,7 @@ def array_namespace( use_compat: bool or None If None (the default), the native namespace will be returned if it is - already array API compatible, otherwise a compat wrapper is used. If + already array API compatible; otherwise, a compat wrapper is used. If True, the compat library wrapped library will be returned. If False, the native library namespace is returned. From 3f7f4713cfe518100f599f2712ab45537a550c86 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 16 Feb 2026 11:51:35 -0500 Subject: [PATCH 2/5] spelling: appropriate Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- docs/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index fe07c9e0..6d50df43 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -298,7 +298,7 @@ Thomas Li - New flag `use_compat` to {func}`~.array_namespace` to force the use or non-use of the compat wrapper namespace. The default is to return a compat - namespace when it is appropiate. + namespace when it is appropriate. - Fix the `copy` flag to `asarray` for NumPy, CuPy, and Dask. From 2e5156868cd92b4ac96a1b41e7ba115eddd04ebc Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 16 Feb 2026 12:21:45 -0500 Subject: [PATCH 3/5] spelling: matrices Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- array_api_compat/dask/array/linalg.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/array_api_compat/dask/array/linalg.py b/array_api_compat/dask/array/linalg.py index 6b3c1011..a9be5d5f 100644 --- a/array_api_compat/dask/array/linalg.py +++ b/array_api_compat/dask/array/linalg.py @@ -43,7 +43,7 @@ def qr( # type: ignore[no-redef] # and dask doesn't have the full_matrices keyword def svd(x: Array, full_matrices: bool = True, **kwargs: object) -> SVDResult: # type: ignore[no-redef] if full_matrices: - raise ValueError("full_matrics=True is not supported by dask.") + raise ValueError("full_matrices=True is not supported by dask.") return da.linalg.svd(x, coerce_signs=False, **kwargs) def svdvals(x: Array) -> Array: From 59d03f1350ccc5c9b928686a7dc16bce6b0c9179 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 16 Feb 2026 12:02:03 -0500 Subject: [PATCH 4/5] spelling: otherwise, Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- docs/dev/releasing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/releasing.md b/docs/dev/releasing.md index f6fca85c..21d3c36a 100644 --- a/docs/dev/releasing.md +++ b/docs/dev/releasing.md @@ -24,7 +24,7 @@ This does mean you can ignore CI failures, but ideally you should fix any failures or update the `*-xfails.txt` files before tagging, so that CI and - the CuPy tests fully pass. Otherwise it will be hard to tell what things are + the CuPy tests fully pass. Otherwise, it will be hard to tell what things are breaking in the future. It's also a good idea to remove any xpasses from those files (but be aware that some xfails are from flaky failures, so unless you know the underlying issue has been fixed, an xpass test is From c938b057d36dd6407812fd834a9001031ef2ffe2 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Mon, 16 Feb 2026 11:54:48 -0500 Subject: [PATCH 5/5] spelling: wraps Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- docs/changelog.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/changelog.md b/docs/changelog.md index 6d50df43..a9b355a0 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -221,7 +221,7 @@ Thomas Li `xp.__array_namespace_info__()`. - Various fixes to the `clip()` wrappers. -- `torch.conj` now wrapps `torch.conj_physical`, which makes a copy rather +- `torch.conj` now wraps `torch.conj_physical`, which makes a copy rather than setting the conjugation bit, as arrays with the conjugation bit set do not support some APIs.