Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion dpnp/dpnp_iface_histograms.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def histogram(a, bins=10, range=None, density=None, weights=None):
:obj:`dpnp.digitize` : Return the indices of the bins to which each value
in input array belongs.
:obj:`dpnp.histogram_bin_edges` : Return only the edges of the bins used
by the obj:`dpnp.histogram` function.
by the :obj:`dpnp.histogram` function.

Examples
--------
Expand Down
2 changes: 1 addition & 1 deletion dpnp/dpnp_iface_sorting.py
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def argsort(
:obj:`dpnp.sort` : Return a sorted copy of an array.
:obj:`dpnp.lexsort` : Indirect stable sort with multiple keys.
:obj:`dpnp.argpartition` : Indirect partial sort.
:obj:`dpnp.take_along_axis` : Apply ``index_array`` from obj:`dpnp.argsort`
:obj:`dpnp.take_along_axis` : Apply ``index_array`` from :obj:`dpnp.argsort`
to an array as if by calling sort.

Examples
Expand Down
Loading