Skip to content

Commit b89c97c

Browse files
committed
docs: resolve lint errors in TS declaration files
1 parent 508c8a7 commit b89c97c

File tree

34 files changed

+136
-133
lines changed

34 files changed

+136
-133
lines changed

lib/node_modules/@stdlib/math/base/ops/imuldw/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,9 @@
2323
import { Collection } from '@stdlib/types/array';
2424

2525
/**
26-
* Interface describing `imuldw`.
27-
*/
28-
interface Imuldw {
26+
* Interface describing `imuldw`.
27+
*/
28+
interface Imuldw {
2929
/**
3030
* Performs multiplication of two signed 32-bit integers and returns an array of two signed 32-bit integers which represents the signed 64-bit integer product.
3131
*

lib/node_modules/@stdlib/math/base/ops/umuldw/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
import { Collection } from '@stdlib/types/array';
2424

2525
/**
26-
* Interface describing `umuldw`
27-
*/
26+
* Interface describing `umuldw`
27+
*/
2828
interface Umuldw {
2929
/**
3030
* Performs multiplication of two unsigned 32-bit integers and returns an array of two unsigned 32-bit integers which represents the unsigned 64-bit integer product.

lib/node_modules/@stdlib/math/base/special/acscdf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @example
4242
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
4343
*
44-
** var v = acscdf( sqrtf( 2.0 ) );
44+
* var v = acscdf( sqrtf( 2.0 ) );
4545
* // returns ~45.0
4646
*
4747
* @example

lib/node_modules/@stdlib/math/base/special/asecdf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @example
4242
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
4343
*
44-
** var v = asecdf( sqrtf( 2.0 ) );
44+
* var v = asecdf( sqrtf( 2.0 ) );
4545
* // returns 45.0
4646
*
4747
* @example

lib/node_modules/@stdlib/math/base/special/asind/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @example
4242
* var sqrt = require( '@stdlib/math/base/special/sqrt' );
4343
*
44-
** var v = asindf( sqrt( 3.0 ) / 2.0 );
44+
* var v = asindf( sqrt( 3.0 ) / 2.0 );
4545
* // returns ~60.0
4646
*
4747
* @example

lib/node_modules/@stdlib/math/base/special/asindf/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
* @example
4242
* var sqrtf = require( '@stdlib/math/base/special/sqrtf' );
4343
*
44-
** var v = asindf( sqrtf( 3.0 ) / 2.0 );
44+
* var v = asindf( sqrtf( 3.0 ) / 2.0 );
4545
* // returns ~60.0
4646
*
4747
* @example

lib/node_modules/@stdlib/math/base/special/cosd/docs/types/index.d.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@
2323
*
2424
* @param x - input value (in degrees)
2525
* @returns cosine
26-
*
27-
* @example
28-
* var v = cosd( 0.0 );
29-
* // returns 1.0
30-
*
31-
* @example
32-
* var v = cosd( 60.0 );
33-
* // returns ~0.5
34-
*
35-
* @example
36-
* var v = cosd( 90.0);
37-
* // returns 0
38-
*
39-
* @example
40-
* var v = cosd( NaN );
41-
* // returns NaN
26+
*
27+
* @example
28+
* var v = cosd( 0.0 );
29+
* // returns 1.0
30+
*
31+
* @example
32+
* var v = cosd( 60.0 );
33+
* // returns ~0.5
34+
*
35+
* @example
36+
* var v = cosd( 90.0);
37+
* // returns 0
38+
*
39+
* @example
40+
* var v = cosd( NaN );
41+
* // returns NaN
4242
*/
4343
declare function cosd( x: number ): number;
4444

lib/node_modules/@stdlib/math/base/special/cot/docs/types/index.d.ts

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -23,26 +23,26 @@
2323
*
2424
* @param x - input value (in radians)
2525
* @returns cotangent
26-
*
27-
* @example
28-
* var v = cot( 0.0 );
29-
* // returns Infinity
30-
*
31-
* @example
32-
* var v = cot( 3.141592653589793/2.0 );
33-
* // returns ~0.0
34-
*
35-
* @example
36-
* var v = cot( -3.141592653589793/4.0 );
37-
* // returns ~-1.0
38-
*
39-
* @example
40-
* var v = cot( 3.141592653589793/4.0 );
41-
* // returns ~1.0
42-
*
43-
* @example
44-
* var v = cot( NaN );
45-
* // returns NaN
26+
*
27+
* @example
28+
* var v = cot( 0.0 );
29+
* // returns Infinity
30+
*
31+
* @example
32+
* var v = cot( 3.141592653589793/2.0 );
33+
* // returns ~0.0
34+
*
35+
* @example
36+
* var v = cot( -3.141592653589793/4.0 );
37+
* // returns ~-1.0
38+
*
39+
* @example
40+
* var v = cot( 3.141592653589793/4.0 );
41+
* // returns ~1.0
42+
*
43+
* @example
44+
* var v = cot( NaN );
45+
* // returns NaN
4646
*/
4747
declare function cot( x: number ): number;
4848

lib/node_modules/@stdlib/math/base/special/cotd/docs/types/index.d.ts

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -23,22 +23,22 @@
2323
*
2424
* @param x - input value (in degrees)
2525
* @returns cotangent
26-
*
27-
* @example
28-
* var v = cotd( 0.0 );
29-
* // returns Infinity
30-
*
31-
* @example
32-
* var v = cotd( 60.0 );
33-
* // returns ~0.58
34-
*
35-
* @example
36-
* var v = cotd( 90.0 );
37-
* // returns 0.0
38-
*
39-
* @example
40-
* var v = cotd( NaN );
41-
* // returns NaN
26+
*
27+
* @example
28+
* var v = cotd( 0.0 );
29+
* // returns Infinity
30+
*
31+
* @example
32+
* var v = cotd( 60.0 );
33+
* // returns ~0.58
34+
*
35+
* @example
36+
* var v = cotd( 90.0 );
37+
* // returns 0.0
38+
*
39+
* @example
40+
* var v = cotd( NaN );
41+
* // returns NaN
4242
*/
4343
declare function cotd( x: number ): number;
4444

lib/node_modules/@stdlib/math/base/special/cpolar/docs/types/index.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ import { Complex128 } from '@stdlib/types/complex';
2424
import { Collection } from '@stdlib/types/array';
2525

2626
/**
27-
* Interface describing `cpolar`.
28-
*/
27+
* Interface describing `cpolar`.
28+
*/
2929
interface Cpolar {
3030
/**
3131
* Computes the absolute value and the phase of a double-precision complex floating-point number.

0 commit comments

Comments
 (0)