diff options
author | Tim Peters <tim.peters@gmail.com> | 2000-07-03 22:41:34 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2000-07-03 22:41:34 (GMT) |
commit | 489d54ef666dde78761740a6b175c40106745977 (patch) | |
tree | a6a6bb286efd854b29d3dd669b1d4dbe479b2007 | |
parent | 41aa8e523d1f81dc4b4d529dd01c59aef350eada (diff) | |
download | cpython-489d54ef666dde78761740a6b175c40106745977.zip cpython-489d54ef666dde78761740a6b175c40106745977.tar.gz cpython-489d54ef666dde78761740a6b175c40106745977.tar.bz2 |
Typo repair in docstring -- my fault.
-rw-r--r-- | Modules/mathmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index c4ff665..a20197a 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."; |