Skip to content

Commit dd9976d

Browse files
authored
Correct wording usage such as a/an (#2719)
The correct usage is "an nd", because the phonetic spelling of the word starts with a vowel (https://www.grammarly.com/blog/grammar/indefinite-articles-a-and-an/). The PR fixes the spelling issue.
1 parent 8c56923 commit dd9976d

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ Also, that release drops support for Python 3.9, making Python 3.10 the minimum
5757
### Fixed
5858

5959
* Suppressed a potential deprecation warning triggered during import of the `dpctl.tensor` module [#2709](https://github.com/IntelPython/dpnp/pull/2709)
60+
* Corrected a phonetic spelling issue due to incorrect using of `a nd` in docstrings [#2719](https://github.com/IntelPython/dpnp/pull/2719)
6061

6162
### Security
6263

dpnp/dpnp_iface_indexing.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2671,7 +2671,7 @@ def triu_indices_from(arr, k=0):
26712671
inds : tuple of dpnp.ndarray
26722672
The indices for the triangle. The returned tuple contains two arrays,
26732673
each with the indices along one dimension of the array. Can be used
2674-
to slice a ndarray of shape(`n`, `n`).
2674+
to slice an ndarray of shape(`n`, `n`).
26752675
26762676
See Also
26772677
--------

0 commit comments

Comments
 (0)