Kaydet (Commit) b057dd8e authored tarafından Guido van Rossum's avatar Guido van Rossum

Correctly document atan2.

üst 64583d3f
...@@ -128,7 +128,7 @@ FUNC1(math_asin, asin, math_asin_doc, ...@@ -128,7 +128,7 @@ FUNC1(math_asin, asin, math_asin_doc,
FUNC1(math_atan, atan, math_atan_doc, FUNC1(math_atan, atan, math_atan_doc,
"atan(x)\n\nReturn the arc tangent of x.") "atan(x)\n\nReturn the arc tangent of x.")
FUNC2(math_atan2, atan2, math_atan2_doc, FUNC2(math_atan2, atan2, math_atan2_doc,
"atan2(x)\n\nReturn atan(x /y).") "atan2(y, x)\n\nReturn atan(y/x).")
FUNC1(math_ceil, ceil, math_ceil_doc, FUNC1(math_ceil, ceil, math_ceil_doc,
"ceil(x)\n\nReturn the ceiling of x as a real.") "ceil(x)\n\nReturn the ceiling of x as a real.")
FUNC1(math_cos, cos, math_cos_doc, FUNC1(math_cos, cos, math_cos_doc,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment