diff --git a/dpnp/dpnp_iface_histograms.py b/dpnp/dpnp_iface_histograms.py index 53a4239e7a1..1ac51d18f4c 100644 --- a/dpnp/dpnp_iface_histograms.py +++ b/dpnp/dpnp_iface_histograms.py @@ -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 -------- diff --git a/dpnp/dpnp_iface_sorting.py b/dpnp/dpnp_iface_sorting.py index 8f6f3e80f0d..5feffffbc43 100644 --- a/dpnp/dpnp_iface_sorting.py +++ b/dpnp/dpnp_iface_sorting.py @@ -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