diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-02-28 15:50:40 (GMT) |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-02-28 15:50:40 (GMT) |
commit | de28d6841e60d75ce7644ca527448f73376ec48e (patch) | |
tree | e8be3c22e5ffc519c0ff6f7132919e300cc322ce | |
parent | 02172ddbee4a07f053468844acb1f9442963e08e (diff) | |
download | cpython-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.c | 4 |
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."); |