From: Wes Turner <50891+westurner@users.noreply.github.com> Date: Fri, 28 Apr 2023 07:31:31 +0000 (-0400) Subject: Fix typo in math.log docstring (#103943) X-Git-Tag: v3.12.0b1~377 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52cedc5c10336f0bc199d28524491e7de05bd047;p=thirdparty%2FPython%2Fcpython.git Fix typo in math.log docstring (#103943) --- diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index a5e82d571ada..4a2381d96117 100644 --- a/Modules/mathmodule.c +++ b/Modules/mathmodule.c @@ -2314,7 +2314,7 @@ math_log(PyObject *module, PyObject * const *args, Py_ssize_t nargs) PyDoc_STRVAR(math_log_doc, "log(x, [base=math.e])\n\ Return the logarithm of x to the given base.\n\n\ -If the base not specified, returns the natural logarithm (base e) of x."); +If the base is not specified, returns the natural logarithm (base e) of x."); /*[clinic input] math.log2