summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorWes Turner <50891+westurner@users.noreply.github.com>2023-04-28 07:31:31 (GMT)
committerGitHub <noreply@github.com>2023-04-28 07:31:31 (GMT)
commit52cedc5c10336f0bc199d28524491e7de05bd047 (patch)
tree60aaa88f60c56bbc0504f52e647abea68f9da304 /Modules
parent67d140dba72dc2cb661d55878384464de46719e7 (diff)
downloadcpython-52cedc5c10336f0bc199d28524491e7de05bd047.zip
cpython-52cedc5c10336f0bc199d28524491e7de05bd047.tar.gz
cpython-52cedc5c10336f0bc199d28524491e7de05bd047.tar.bz2
Fix typo in math.log docstring (#103943)
Diffstat (limited to 'Modules')
-rw-r--r--Modules/mathmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/mathmodule.c b/Modules/mathmodule.c
index a5e82d5..4a2381d 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