Skip to content

Commit 35ddd91

Browse files
committed
Update the docstring of erfcx with correct path to the erf functions
1 parent 2c25c16 commit 35ddd91

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

dpnp/scipy/special/_erf.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -196,16 +196,16 @@ def __call__(self, x, out=None): # pylint: disable=signature-differs
196196
197197
See Also
198198
--------
199-
:obj:`dpnp.special.erf` : Gauss error function.
200-
:obj:`dpnp.special.erfc` : Complementary error function.
201-
:obj:`dpnp.special.erfinv` : Inverse of the error function.
202-
:obj:`dpnp.special.erfcinv` : Inverse of the complementary error function.
199+
:obj:`dpnp.scipy.special.erf` : Gauss error function.
200+
:obj:`dpnp.scipy.special.erfc` : Complementary error function.
201+
:obj:`dpnp.scipy.special.erfinv` : Inverse of the error function.
202+
:obj:`dpnp.scipy.special.erfcinv` : Inverse of the complementary error function.
203203
204204
Examples
205205
--------
206206
>>> import dpnp as np
207207
>>> x = np.linspace(-3, 3, num=4)
208-
>>> np.special.erfcx(x)
208+
>>> np.scipy.special.erfcx(x)
209209
array([1.62059889e+04, 5.00898008e+00, 4.27583576e-01, 1.79001151e-01])
210210
211211
"""

0 commit comments

Comments
 (0)