summaryrefslogtreecommitdiffstats
path: root/Modules/clinic/cmathmodule.c.h
diff options
context:
space:
mode:
authorMark Dickinson <dickinsm@gmail.com>2015-01-11 13:22:44 (GMT)
committerMark Dickinson <dickinsm@gmail.com>2015-01-11 13:22:44 (GMT)
commitcc8617b93a34f8dfcff9e686ee91d8fb1802bc2b (patch)
tree625272f5ee43e7d8dc05cae4e5512128412b58c3 /Modules/clinic/cmathmodule.c.h
parenta5d0c7c2fdd638d684acdb5391e0987b1e37f56a (diff)
parentdfe0b2326b9700f5f5f5af566488dfe913348ab9 (diff)
downloadcpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.zip
cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.tar.gz
cpython-cc8617b93a34f8dfcff9e686ee91d8fb1802bc2b.tar.bz2
Issue #21092: Merge from 3.4.
Diffstat (limited to 'Modules/clinic/cmathmodule.c.h')
-rw-r--r--Modules/clinic/cmathmodule.c.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/clinic/cmathmodule.c.h b/Modules/clinic/cmathmodule.c.h
index 7d6e04b..83de518 100644
--- a/Modules/clinic/cmathmodule.c.h
+++ b/Modules/clinic/cmathmodule.c.h
@@ -49,7 +49,7 @@ PyDoc_STRVAR(cmath_acosh__doc__,
"acosh($module, z, /)\n"
"--\n"
"\n"
-"Return the hyperbolic arccosine of z.");
+"Return the inverse hyperbolic cosine of z.");
#define CMATH_ACOSH_METHODDEF \
{"acosh", (PyCFunction)cmath_acosh, METH_VARARGS, cmath_acosh__doc__},
@@ -135,7 +135,7 @@ PyDoc_STRVAR(cmath_asinh__doc__,
"asinh($module, z, /)\n"
"--\n"
"\n"
-"Return the hyperbolic arc sine of z.");
+"Return the inverse hyperbolic sine of z.");
#define CMATH_ASINH_METHODDEF \
{"asinh", (PyCFunction)cmath_asinh, METH_VARARGS, cmath_asinh__doc__},
@@ -221,7 +221,7 @@ PyDoc_STRVAR(cmath_atanh__doc__,
"atanh($module, z, /)\n"
"--\n"
"\n"
-"Return the hyperbolic arc tangent of z.");
+"Return the inverse hyperbolic tangent of z.");
#define CMATH_ATANH_METHODDEF \
{"atanh", (PyCFunction)cmath_atanh, METH_VARARGS, cmath_atanh__doc__},