From: Mark Dickinson Date: Sat, 28 Feb 2009 15:50:40 +0000 (+0000) Subject: Issue #5393: typo in cmath.cos and cmath.cosh docstring X-Git-Tag: v2.7a1~1924 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=de28d6841e60d75ce7644ca527448f73376ec48e;p=python Issue #5393: typo in cmath.cos and cmath.cosh docstring --- 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.");