summaryrefslogtreecommitdiff
path: root/Modules/cmathmodule.c
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-02-28 15:50:40 +0000
committerMark Dickinson <dickinsm@gmail.com>2009-02-28 15:50:40 +0000
commitde28d6841e60d75ce7644ca527448f73376ec48e (patch)
treee8be3c22e5ffc519c0ff6f7132919e300cc322ce /Modules/cmathmodule.c
parent02172ddbee4a07f053468844acb1f9442963e08e (diff)
downloadcpython-git-de28d6841e60d75ce7644ca527448f73376ec48e.tar.gz
Issue #5393: typo in cmath.cos and cmath.cosh docstring
Diffstat (limited to 'Modules/cmathmodule.c')
-rw-r--r--Modules/cmathmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 42af08cf47..6022cb6150 100644
--- a/Modules/cmathmodule.c
+++ b/Modules/cmathmodule.c
@@ -368,7 +368,7 @@ c_cos(Py_complex z)
PyDoc_STRVAR(c_cos_doc,
"cos(x)\n"
-"n"
+"\n"
"Return the cosine of x.");
@@ -427,7 +427,7 @@ c_cosh(Py_complex z)
PyDoc_STRVAR(c_cosh_doc,
"cosh(x)\n"
-"n"
+"\n"
"Return the hyperbolic cosine of x.");