Skip to content

Commit c58d5e8

Browse files
committed
Add missing asterisks
1 parent 6fc29f8 commit c58d5e8

File tree

14 files changed

+13
-14
lines changed

14 files changed

+13
-14
lines changed

lib/node_modules/@stdlib/math/base/special/bessely0/lib/y0.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ var sc = [ 0.0, 0.0 ]; // WARNING: not thread safe
7171

7272
/**
7373
* Computes the Bessel function of the second kind of order zero.
74-
74+
*
7575
* ## Notes
7676
*
7777
* - Accuracy for subnormal `x` is very poor. Full accuracy is achieved at `1.0e-308` but trends progressively to zero at `5e-324`. This suggests that underflow (or overflow, perhaps due to a reciprocal) is effectively cutting off digits of precision until the computation loses all accuracy at `5e-324`.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ var LN2_HALFX3 = 1.03972077083991796413e+00; // 0x3FF0A2B2 0x3F3BAB73
201201
* - if \\(k \leq 20\\), return \\(2^k((1-2^{-k})-(\mathrm{E}-r))\\)
202202
*
203203
* - else return \\(2^k(1-((\mathrm{E}+2^{-k})-r))\\)
204-
204+
*
205205
* - For IEEE 754 double, if \\(x > 7.09782712893383973096\mbox{e+}02\\), then \\(\operatorname{expm1}(x)\\) will overflow.
206206
*
207207
* - The hexadecimal values listed in the source are the intended ones for the implementation constants. Decimal values may be used, provided that the compiler will convert from decimal to binary accurately enough to produce the intended hexadecimal values.

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var sc = [ 0.0, 0.0 ]; // WARNING: not thread safe
5353

5454
/**
5555
* Computes the Fresnel integral S(x).
56-
56+
*
5757
* ## Method
5858
*
5959
* Evaluates the Fresnel integral

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ var TT = -3.63867699703950536541e-18; // 0xBC50C7CAA48A971F => TT = -(tail of TF
149149
* ```tex
150150
* w = w_0 + w_1 z + w_2 z^3 + w_3 z^5 + \ldots + w_6 z^{11}
151151
* ```
152-
152+
*
153153
* where
154154
*
155155
* ```tex

lib/node_modules/@stdlib/math/base/special/kernel-cos/lib/kernel_cos.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ var polyval46 = require( './polyval_c46.js' );
7272
* ```tex
7373
* \cos(x+y) \approx \cos(x) - \sin(x) \cdot y \approx \cos(x) - x \cdot y
7474
* ```
75-
75+
*
7676
* a correction term is necessary in \\( \cos(x) \\). Hence,
7777
*
7878
* ```tex

lib/node_modules/@stdlib/math/base/special/sinc/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
*
3232
* v = sinc( -1.2 );
3333
* // returns ~-0.156
34-
34+
*
3535
* v = sinc( 0.0 );
3636
* // returns 1.0
3737
*

lib/node_modules/@stdlib/stats/base/dists/levy/cdf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* @example
3636
* var factory = require( '@stdlib/stats/base/dists/levy/cdf' ).factory;
37-
37+
*
3838
* var myCDF = factory( 2.0, 3.0 );
3939
* var y = myCDF( 100.0 );
4040
* // returns ~0.861

lib/node_modules/@stdlib/stats/base/dists/levy/logcdf/lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* @example
3636
* var factory = require( '@stdlib/stats/base/dists/levy/logcdf' ).factory;
37-
37+
*
3838
* var mylogcdf = factory( 2.0, 3.0 );
3939
* var y = mylogcdf( 100.0 );
4040
* // returns ~-0.15

lib/node_modules/@stdlib/stats/ztest2/lib/validate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ var hasOwnProp = require( '@stdlib/assert/has-own-property' );
3939
* @param {number} [options.alpha] - significance level
4040
* @param {string} [options.alternative] - alternative hypothesis (`two-sided`, `less` or `greater`)
4141
* @param {number} [options.difference] - difference in means under H0
42-
4342
* @returns {(null|Error)} null or an error
4443
*/
4544
function validate( opts, options ) {

lib/node_modules/@stdlib/streams/node/inspect/lib/object_mode.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ var Stream = require( './main.js' );
5353
* stream.write( {'value': 'c'} );
5454
*
5555
* stream.end();
56-
56+
*
5757
* // prints: index: 0
5858
* // prints: {'value': 'a'}
5959
* // prints: index: 1

0 commit comments

Comments
 (0)