10000 Fix typo in math.log docstring (#103943) · python/cpython@52cedc5 · GitHub
[go: up one dir, main page]

Skip to content

Commit 52cedc5

Browse files
authored
Fix typo in math.log docstring (#103943)
1 parent 67d140d commit 52cedc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Modules/mathmodule.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2314,7 +2314,7 @@ math_log(PyObject *module, PyObject * const *args, Py_ssize_t nargs)
23142314
PyDoc_STRVAR(math_log_doc,
23152315
"log(x, [base=math.e])\n\
23162316
Return the logarithm of x to the given base.\n\n\
2317-
If the base not specified, returns the natural logarithm (base e) of x.");
2317+
If the base is not specified, returns the natural logarithm (base e) of x.");
23182318

23192319
/*[clinic input]
23202320
math.log2

0 commit comments

Comments
 (0)
0