From 5cc0f9f83f84ab9949fad076242a92d2265cb594 Mon Sep 17 00:00:00 2001 From: Anton Volkov Date: Thu, 18 Jun 2026 13:04:16 +0200 Subject: [PATCH] Fix typo in docstring of DPNPBinaryFunc class --- dpnp/dpnp_algo/dpnp_elementwise_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dpnp/dpnp_algo/dpnp_elementwise_common.py b/dpnp/dpnp_algo/dpnp_elementwise_common.py index 96db4b4fe4e..958a77901a8 100644 --- a/dpnp/dpnp_algo/dpnp_elementwise_common.py +++ b/dpnp/dpnp_algo/dpnp_elementwise_common.py @@ -593,7 +593,7 @@ class DPNPBinaryFunc(BinaryElementwiseFunc): Function to influence type promotion behavior for Python scalar types of this binary function. The function takes 3 arguments: o1_dtype - Data type or Python scalar type of the first argument - o2_dtype - Data type or Python scalar type of of the second argument + o2_dtype - Data type or Python scalar type of the second argument sycl_dev - The :class:`dpctl.SyclDevice` where the function evaluation is carried out. One of `o1_dtype` and `o2_dtype` must be a ``dtype`` instance.