summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2009-02-28 15:50:40 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2009-02-28 15:50:40 (GMT)
commitde28d6841e60d75ce7644ca527448f73376ec48e (patch)
treee8be3c22e5ffc519c0ff6f7132919e300cc322ce
parent02172ddbee4a07f053468844acb1f9442963e08e (diff)
downloadcpython-de28d6841e60d75ce7644ca527448f73376ec48e.zip
cpython-de28d6841e60d75ce7644ca527448f73376ec48e.tar.gz
cpython-de28d6841e60d75ce7644ca527448f73376ec48e.tar.bz2
Issue #5393: typo in cmath.cos and cmath.cosh docstring
-rw-r--r--Modules/cmathmodule.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/cmathmodule.c b/Modules/cmathmodule.c
index 42af08c..6022cb6 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.");