summaryrefslogtreecommitdiffstats
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1998-12-08 16:27:10 (GMT)
committerGuido van Rossum <guido@python.org>1998-12-08 16:27:10 (GMT)
commitb057dd8efa838b0de23ce3acadba6a5b64f768e3 (patch)
tree67df008bc0d7ad1ac1e0304191e8a9eb48fc6c11 /Modules/mathmodule.c
parent64583d3f87d9984fe27f45f4cdf380677c662707 (diff)
downloadcpython-b057dd8efa838b0de23ce3acadba6a5b64f768e3.zip
cpython-b057dd8efa838b0de23ce3acadba6a5b64f768e3.tar.gz
cpython-b057dd8efa838b0de23ce3acadba6a5b64f768e3.tar.bz2
Correctly document atan2.
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index 1d559e1..a241c60 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -128,7 +128,7 @@ FUNC1(math_asin, asin, math_asin_doc,
FUNC1(math_atan, atan, math_atan_doc,
"atan(x)\n\nReturn the arc tangent of x.")
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,
"ceil(x)\n\nReturn the ceiling of x as a real.")
FUNC1(math_cos, cos, math_cos_doc,