From edee9974e29ad703be30c9a64a60042da247996f Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Tue, 13 Jan 2026 04:42:31 -0800 Subject: [PATCH 1/2] Correct wording usage such as a/an --- dpnp/dpnp_iface_indexing.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpnp/dpnp_iface_indexing.py b/dpnp/dpnp_iface_indexing.py index b0039a68f44..6375e5320e3 100644 --- a/dpnp/dpnp_iface_indexing.py +++ b/dpnp/dpnp_iface_indexing.py @@ -2671,7 +2671,7 @@ def triu_indices_from(arr, k=0): inds : tuple of dpnp.ndarray The indices for the triangle. The returned tuple contains two arrays, each with the indices along one dimension of the array. Can be used - to slice a ndarray of shape(`n`, `n`). + to slice an ndarray of shape(`n`, `n`). See Also -------- From f3eb40cd54a1dd7284feeeda8ae95b60575446cb Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Tue, 13 Jan 2026 04:47:11 -0800 Subject: [PATCH 2/2] Add PR to the changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aa531908591..c78c8db4fa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -56,6 +56,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum ### Fixed * Suppressed a potential deprecation warning triggered during import of the `dpctl.tensor` module [#2709](https://github.com/IntelPython/dpnp/pull/2709) +* Corrected a phonetic spelling issue due to incorrect using of `a nd` in docstrings [#2719](https://github.com/IntelPython/dpnp/pull/2719) ### Security