Skip to content

Commit 19e6b05

Browse files
committed
Fix typo in description
1 parent ae0d097 commit 19e6b05

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

dpnp/dpnp_array.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -437,6 +437,7 @@ def asnumpy(self):
437437
438438
Returns
439439
-------
440+
asnumpy : numpy.ndarray
440441
An instance of :class:`numpy.ndarray` populated with the array content.
441442
442443
"""

dpnp/dpnp_iface.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ def get_dpnp_descriptor(ext_obj,
214214
return False
215215

216216
# If input object is a scalar, it means it was allocated on host memory.
217-
# We need to copy it to device memory according compute follows data paradigm.
217+
# We need to copy it to device memory according to compute follows data paradigm.
218218
if isscalar(ext_obj):
219219
ext_obj = array(ext_obj, sycl_queue=alloc_queue)
220220

0 commit comments

Comments
 (0)