Missing double-quote

This commit is contained in:
Dan Halbert 2022-04-19 12:57:22 -04:00 committed by GitHub
parent 2e2e3ad612
commit af59f4938a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ STATIC NORETURN void math_error(void) {
//|
//| def log(x: float, base: float = math.e) -> float:
//| """Return the logarithm of x to the given base. If base is not specified,
//| returns the natural logarithm (base e) of x""
//| returns the natural logarithm (base e) of x"""
//| ...
//|
//| def modf(x: float) -> Tuple[float, float]: