Skip to content

Commit d13abe5

Browse files
committed
Remove extra space before code fence language
1 parent 68daf06 commit d13abe5

File tree

41 files changed

+193
-193
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+193
-193
lines changed

lib/node_modules/@stdlib/math/base/special/acosh/lib/acosh.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ var HUGE = 1 << 28; // 2**28
4040
*
4141
* Based on
4242
*
43-
* ``` tex
43+
* ```tex
4444
* \operatorname{acosh}(x) = \log \left[ x + \sqrt{ x^2 - 1 } \right]
4545
* ```
4646
*
4747
* we have
4848
*
49-
* ``` tex
49+
* ```tex
5050
* \operatorname{acosh}(x) = \begin{cases}
5151
* \log(x) + \tfrac{\ln}{2} & \text{ if x is large } \\
5252
* \log \left( 2x-\tfrac{1}{\sqrt{x^2-1}+x} \right) & \text{ if } x > 2 \\
@@ -56,7 +56,7 @@ var HUGE = 1 << 28; // 2**28
5656
*
5757
* #### Special Cases
5858
*
59-
* ``` tex
59+
* ```tex
6060
* \begin{align*}
6161
* \operatorname{acosh}(x) &= \mathrm{NaN}\ \text{ if } x < 1 \\
6262
* \end{align*}

lib/node_modules/@stdlib/math/base/special/asinh/lib/asinh.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@ var HUGE = 1 << 28; // 2**28
4242
*
4343
* Based on
4444
*
45-
* ``` tex
45+
* ```tex
4646
* \operatorname{asinh}(x) = \operatorname{sgn}(x) \cdot \log \left( |x| + \sqrt{x^2 + 1} \right)
4747
* ```
4848
*
4949
* we have
5050
*
51-
* ``` tex
51+
* ```tex
5252
* \operatorname{asinh}(x) = \begin{cases}
5353
* x & \text{ if } 1+x^2 =1, \\
5454
* \operatorname{sgn}(x) \cdot \left( \log(x) + \tfrac{\ln}{2} \right) & \text{ if large } |x| \\

lib/node_modules/@stdlib/math/base/special/atan2/lib/atan2.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var PI = require( '@stdlib/math/constants/float64-pi' );
5353
*
5454
* #### Special Cases
5555
*
56-
* ``` tex
56+
* ```tex
5757
* \begin{align}
5858
* \operatorname{atan2}(y,\mathrm{NaN}) &= \mathrm{NaN}\\
5959
* \operatorname{atan2}(\mathrm{NaN},x) &= \mathrm{NaN}\\

lib/node_modules/@stdlib/math/base/special/atanh/lib/atanh.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@ var NEAR_ZERO = 1.0 / (1 << 28); // 2**-28
4141
*
4242
* 2. For \\( x \ge 0.5 \\), we calculate
4343
*
44-
* ``` tex
44+
* ```tex
4545
* \operatorname{atanh}(x) = \frac{1}{2} \cdot \log\left( 1 + \tfrac{2x}{1-x} \right) = \frac{1}{2} \cdot \operatorname{log1p}\left( 2 \tfrac{x}{1-x} \right)
4646
* ```
4747
*
4848
* For \\( x < 0.5 \\), we have
4949
*
50-
* ``` tex
50+
* ```tex
5151
* \operatorname{atanh}(x) = \frac{1}{2} \cdot \operatorname{log1p}\left( 2x + \tfrac{2x^2}{1-x} \right)
5252
* ```
5353
*
5454
* #### Special Cases
5555
*
56-
* ``` tex
56+
* ```tex
5757
* \begin{align*}
5858
* \operatorname{atanh}(\mathrm{NaN}) &= \mathrm{NaN}\\
5959
* \operatorname{atanh}(1.0) &= \infty \\

lib/node_modules/@stdlib/math/base/special/betaln/lib/gamma_correction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var XMAX = 3.745194030963158e306;
4040
/**
4141
* Compute the log gamma correction factor for x >= 10 so that
4242
*
43-
* ``` tex
43+
* ```tex
4444
* \log(\gamma(x)) = \log(\sqrt{2*\Pi}) + (x-0.5) \cdot \log(x) - x \operatorname{R9LGMC}(x).
4545
* ```
4646
*

lib/node_modules/@stdlib/math/base/special/binomcoef/lib/binomcoef.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var round = require( '@stdlib/math/base/special/round' );
1717
*
1818
* * Instead of evaluating the factorial form, which is inefficient and prone to overflow for large inputs arguments, this module computes the following multiplicative representation of the binomial coefficient for integer arguments
1919
*
20-
* ``` tex
20+
* ```tex
2121
* \binom nk = \prod_{i=1}^k \frac{n+1-i}{i}
2222
* ```
2323
*

lib/node_modules/@stdlib/math/base/special/cbrt/lib/cbrt.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var polyval = evalpoly( P );
7575
*
7676
* 1. Rough cube root to \\( 5 \\) bits:
7777
*
78-
* ``` tex
78+
* ```tex
7979
* \sqrt[3]{2^e (1+m)} \approx 2^(e/3) \biggl(1 + \frac{(e \mathrm{mod}\ 3) + m}{3}\biggr)
8080
* ```
8181
*
@@ -91,7 +91,7 @@ var polyval = evalpoly( P );
9191
*
9292
* 2. New cube root to \\( 23 \\) bits:
9393
*
94-
* ``` tex
94+
* ```tex
9595
* \sqrt[3]{x} = t \cdot \sqrt[3]{x/t^3} \approx t \mathrm{P}(t^3/x)
9696
* ```
9797
*

lib/node_modules/@stdlib/math/base/special/ceiln/lib/ceiln.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ var HUGE = 1e+308;
2929
*
3030
* 1. If \\(|x| <= 2^{53}\\) and \\(|n| <= 308\\), we can use the formula
3131
*
32-
* ``` tex
32+
* ```tex
3333
* \operatorname{ceiln}(x,n) = \frac{\operatorname{ceil}(x \cdot 10^{-n})}{10^{-n}}
3434
* ```
3535
*
@@ -55,7 +55,7 @@ var HUGE = 1e+308;
5555
*
5656
* 5. If \\(n < -308\\), we let \\(m = n + 308\\) and modify the above formula to avoid overflow.
5757
*
58-
* ``` tex
58+
* ```tex
5959
* \operatorname{ceiln}(x,n) = \frac{\biggl(\frac{\operatorname{ceil}( (x \cdot 10^{308}) 10^{-m})}{10^{308}}\biggr)}{10^{-m}}
6060
* ```
6161
*
@@ -64,7 +64,7 @@ var HUGE = 1e+308;
6464
*
6565
* #### Special Cases
6666
*
67-
* ``` tex
67+
* ```tex
6868
* \begin{align*}
6969
* \operatorname{ceiln}(\mathrm{NaN}, n) &= \mathrm{NaN} \\
7070
* \operatorname{ceiln}(x, \mathrm{NaN}) &= \mathrm{NaN} \\

lib/node_modules/@stdlib/math/base/special/cosh/lib/cosh.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var exp = require( '@stdlib/math/base/special/exp' );
1313
*
1414
* #### Method
1515
*
16-
* ``` tex
16+
* ```tex
1717
* \operatorname{cosh}(x) = \frac{ \exp(x) + \exp(-x) }{2}
1818
* ```
1919
*

lib/node_modules/@stdlib/math/base/special/digamma/lib/digamma.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,23 +37,23 @@ var MIN_SAFE_ASYMPTOTIC = 10.0; // BIG
3737
*
3838
* 1. For \\(x < 0\\), we use the reflection formula
3939
*
40-
* ``` tex
40+
* ```tex
4141
* \psi(1-x) = \psi(x) + \frac{\pi}{\tan(\pi x)}
4242
* ```
4343
*
4444
* to make \\(x\\) positive.
4545
*
4646
* 2. For \\(x \in [0,1]\\), we use the recurrence relation
4747
*
48-
* ``` tex
48+
* ```tex
4949
* \psi(x) = \psi(x+1) - \frac{1}{x}
5050
* ```
5151
*
5252
* to shift the evaluation range to \\([1,2]\\).
5353
*
5454
* 3. For \\(x \in [1,2]\\), we use a rational approximation of the form
5555
*
56-
* ``` tex
56+
* ```tex
5757
* \psi(x) = (x - \mathrm{root})(Y + \operatorname{R}(x-1))
5858
* ```
5959
*
@@ -68,15 +68,15 @@ var MIN_SAFE_ASYMPTOTIC = 10.0; // BIG
6868
*
6969
* 4. For \\(x \in [2,\mathrm{BIG}]\\), we use the recurrence relation
7070
*
71-
* ``` tex
71+
* ```tex
7272
* \psi(x+1) = \psi(x) + \frac{1}{x}
7373
* ```
7474
*
7575
* to shift the evaluation range to \\([1,2]\\).
7676
*
7777
* 5. For \\(x > \mathrm{BIG}\\), we use the asymptotic expression
7878
*
79-
* ``` tex
79+
* ```tex
8080
* \psi(x) = \ln(x) + \frac{1}{2x} - \biggl( \frac{B_{21}}{2x^2} + \frac{B_{22}}{4x^4} + \frac{B_{23}}{6x^6} + \ldots \biggr)
8181
* ```
8282
*

0 commit comments

Comments
 (0)