summaryrefslogtreecommitdiff
path: root/shared-bindings/math
diff options
context:
space:
mode:
authorDan Halbert <halbert@halwitz.org>2018-02-27 22:03:52 -0500
committerGitHub <noreply@github.com>2018-02-27 22:03:52 -0500
commit568c04e6afa8016062f685b2198c0209f62827f4 (patch)
treed07b76119f715add462983b335797adf64b61249 /shared-bindings/math
parent6a2379fd0bfe10017d8abc5c36ef1d470c0d9b27 (diff)
parentea633117d01d94e8d56ed94344e4b3e46b4eef03 (diff)
Merge pull request #650 from tannewt/merge_2x3.0.0-alpha.2
Merge in commits from 2.x branch.
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