summaryrefslogtreecommitdiff
path: root/Modules/mathmodule.c
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2000-07-03 22:41:34 +0000
committerTim Peters <tim.peters@gmail.com>2000-07-03 22:41:34 +0000
commit35132c27c2073e278b2125f81395d73ef50ccce4 (patch)
treeebe467562051d76f431d9c713ce7d621aa10f04e /Modules/mathmodule.c
parentcf3c9b2886cdec2452d68952b9f38d6209585ce5 (diff)
downloadcpython-35132c27c2073e278b2125f81395d73ef50ccce4.tar.gz
Typo repair in docstring -- my fault.
Diffstat (limited to 'Modules/mathmodule.c')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index c4ff6650f9..a20197a96e 100644
--- a/Modules/mathmodule.c
+++ b/Modules/mathmodule.c
@@ -165,7 +165,7 @@ math_frexp(PyObject *self, PyObject *args)
static char math_frexp_doc [] =
"frexp(x)\n\
\n\
-Return the matissa and exponent of x, as pair (m, e).\n\
+Return the mantissa and exponent of x, as pair (m, e).\n\
m is a float and e is an int, such that x = m * 2.**e.\n\
If x is 0, m and e are both 0. Else 0.5 <= abs(m) < 1.0.";