summaryrefslogtreecommitdiff
path: root/shared-bindings/math
diff options
context:
space:
mode:
authorScott Shawcroft <scott.shawcroft@gmail.com>2018-02-27 15:24:16 -0800
committerScott Shawcroft <scott.shawcroft@gmail.com>2018-02-27 15:24:16 -0800
commitbf05183158c67c4ef1824c3b1296d401bc7754d8 (patch)
treee33edfecab159138716a2d40dd69e2a1fe23e03f /shared-bindings/math
parent5eb3b208e8d612e2b50bc6e402a2a8901c72640d (diff)
parent892d5cda63fbee051b88db3d9cc8e4ba8555cb96 (diff)
Merge remote-tracking branch 'adafruit/2.x' into merge_2x
Diffstat (limited to 'shared-bindings/math')
-rw-r--r--shared-bindings/math/__init__.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/shared-bindings/math/__init__.c b/shared-bindings/math/__init__.c
index 76ba80c95..84827842f 100644
--- a/shared-bindings/math/__init__.c
+++ b/shared-bindings/math/__init__.c
@@ -176,7 +176,7 @@ STATIC NORETURN void math_error(void) {
//|
//| .. function:: pow(x, y)
//|
- //| Returns `x` to the power of `y`.
+ //| Returns ``x`` to the power of ``y``.
//|
//| .. function:: radians(x)
//|
@@ -188,7 +188,7 @@ STATIC NORETURN void math_error(void) {
//|
//| .. function:: sqrt(x)
//|
- //| Returns the square root of `x`.
+ //| Returns the square root of ``x``.
//|
//| .. function:: tan(x)
//|
@@ -299,25 +299,25 @@ MATH_FUN_2(ldexp, ldexp)
// .. function:: erf(x)
//
-// Return the error function of `x`.
+// Return the error function of ``x``.
//
MATH_FUN_1(erf, erf)
// .. function:: erfc(x)
//
-// Return the complementary error function of `x`.
+// Return the complementary error function of ``x``.
//
MATH_FUN_1(erfc, erfc)
// .. function:: gamma(x)
//
-// Return the gamma function of `x`.
+// Return the gamma function of ``x``.
//
MATH_FUN_1(gamma, tgamma)
// .. function:: lgamma(x)
//
-// Return the natural logarithm of the gamma function of `x`.
+// Return the natural logarithm of the gamma function of ``x``.
//
MATH_FUN_1(lgamma, lgamma)
#endif