From 78e22e0f6ced1dd980127972e5e4508d46934258 Mon Sep 17 00:00:00 2001 From: Wes Turner <50891+westurner@users.noreply.github.com> Date: Thu, 27 Apr 2023 15:10:13 -0400 Subject: [PATCH] DOC: mathmodule.c: fix typo in math.log docstring --- Modules/mathmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c index eddc1a33a953e6..402290b0bdbd2c 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