Change reference of "ports" to "boards"
This commit is contained in:
parent
842d807086
commit
ad502a946d
|
@ -193,7 +193,7 @@ MATH_FUN_1(exp, exp)
|
|||
//| def expm1(x: float) -> float:
|
||||
//| """Return ``exp(x) - 1``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -202,7 +202,7 @@ MATH_FUN_1(expm1, expm1)
|
|||
//| def log2(x: float) -> float:
|
||||
//| """Return the base-2 logarithm of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -211,7 +211,7 @@ MATH_FUN_1_ERRCOND(log2, log2, (x <= (mp_float_t)0.0))
|
|||
//| def log10(x: float) -> float:
|
||||
//| """Return the base-10 logarithm of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -220,7 +220,7 @@ MATH_FUN_1_ERRCOND(log10, log10, (x <= (mp_float_t)0.0))
|
|||
//| def cosh(x: float) -> float:
|
||||
//| """Return the hyperbolic cosine of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -229,7 +229,7 @@ MATH_FUN_1(cosh, cosh)
|
|||
//| def sinh(x: float) -> float:
|
||||
//| """Return the hyperbolic sine of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -238,7 +238,7 @@ MATH_FUN_1(sinh, sinh)
|
|||
//| def tanh(x: float) -> float:
|
||||
//| """Return the hyperbolic tangent of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -247,7 +247,7 @@ MATH_FUN_1(tanh, tanh)
|
|||
//| def acosh(x: float) -> float:
|
||||
//| """Return the inverse hyperbolic cosine of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -256,7 +256,7 @@ MATH_FUN_1(acosh, acosh)
|
|||
//| def asinh(x: float) -> float:
|
||||
//| """Return the inverse hyperbolic sine of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -265,7 +265,7 @@ MATH_FUN_1(asinh, asinh)
|
|||
//| def atanh(x: float) -> float:
|
||||
//| """Return the inverse hyperbolic tangent of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -310,7 +310,7 @@ MATH_FUN_2(ldexp, ldexp)
|
|||
//| def erf(x: float) -> float:
|
||||
//| """Return the error function of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -319,7 +319,7 @@ MATH_FUN_1(erf, erf)
|
|||
//| def erfc(x: float) -> float:
|
||||
//| """Return the complementary error function of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -328,7 +328,7 @@ MATH_FUN_1(erfc, erfc)
|
|||
//| def gamma(x: float) -> float:
|
||||
//| """Return the gamma function of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
@ -337,7 +337,7 @@ MATH_FUN_1(gamma, tgamma)
|
|||
//| def lgamma(x: float) -> float:
|
||||
//| """Return the natural logarithm of the gamma function of ``x``.
|
||||
//|
|
||||
//| May not be available in some ports.
|
||||
//| May not be available on some boards.
|
||||
//| """
|
||||
//| ...
|
||||
//|
|
||||
|
|
Loading…
Reference in New Issue