Merge branch 'doc/add-log-documentation' of https://github.com/tekktrik/circuitpython into doc/add-log-documentation

This commit is contained in:
Alec Delaney 2022-04-19 12:57:55 -04:00
commit 20cc40a30f
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 = 2.71828) -> float: //| def log(x: float, base: float = 2.71828) -> float:
//| """Return the logarithm of x to the given base. If base is not specified, //| """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]: //| def modf(x: float) -> Tuple[float, float]: