]> granicus.if.org Git - python/commitdiff
Typo repair in docstring -- my fault.
authorTim Peters <tim.peters@gmail.com>
Mon, 3 Jul 2000 22:41:34 +0000 (22:41 +0000)
committerTim Peters <tim.peters@gmail.com>
Mon, 3 Jul 2000 22:41:34 +0000 (22:41 +0000)
Modules/mathmodule.c

index c4ff6650f98e3d34188b5ee7ecec0d33e601171c..a20197a96ed915ddebba25486563e0ceadf41ed9 100644 (file)
@@ -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.";