@@ -315,7 +315,7 @@ def _get_accumulation_res_dt(a, dtype):
315315:obj:`dpnp.acos` : Trigonometric inverse cosine, element-wise.
316316:obj:`dpnp.tan` : Trigonometric tangent, element-wise.
317317:obj:`dpnp.atan` : Trigonometric inverse tangent, element-wise.
318- :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}/ {x2}`
318+ :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}{x2}`
319319 choosing the quadrant correctly.
320320:obj:`dpnp.asinh` : Hyperbolic inverse sine, element-wise.
321321
@@ -477,7 +477,7 @@ def _get_accumulation_res_dt(a, dtype):
477477
478478See Also
479479--------
480- :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}/ {x2}`
480+ :obj:`dpnp.atan2` : Element-wise arc tangent of :math:`\frac{x1}{x2}`
481481 choosing the quadrant correctly.
482482:obj:`dpnp.angle` : Argument of complex values.
483483:obj:`dpnp.tan` : Trigonometric tangent, element-wise.
@@ -523,9 +523,9 @@ def _get_accumulation_res_dt(a, dtype):
523523arctan = atan # arctan is an alias for atan
524524
525525
526- _ATAN2_DOCSTRING = """
527- Calculates the inverse tangent of the quotient :math:`x1_i/ x2_i` for each
528- element :math:`x1_i` of the input array `x1` with the respective element
526+ _ATAN2_DOCSTRING = r """
527+ Calculates the inverse tangent of the quotient :math:`\frac{ x1_i}{ x2_i} ` for
528+ each element :math:`x1_i` of the input array `x1` with the respective element
529529:math:`x2_i` of the input array `x2`.
530530
531531Note that :obj:`dpnp.arctan2` is an alias of :obj:`dpnp.atan2`.
@@ -555,7 +555,7 @@ def _get_accumulation_res_dt(a, dtype):
555555-------
556556out : dpnp.ndarray
557557 An array containing the inverse tangent of the quotient
558- :math:`\f rac{x1}/ {x2}`, in radians. The returned array must have a
558+ :math:`\frac{x1}{x2}`, in radians. The returned array must have a
559559 real-valued floating-point data type determined by Type Promotion Rules.
560560
561561Limitations
0 commit comments