Skip to content

Commit af59fdf

Browse files
committed
chore: minor clean-up
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: na - task: lint_javascript_src status: na - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 31cb339 commit af59fdf

File tree

8 files changed

+7
-15
lines changed

8 files changed

+7
-15
lines changed

lib/node_modules/@stdlib/assert/is-camelcase/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
* // returns true
3030
*
3131
* @example
32-
* var bool = isCamelcase( 'HelloWorld' );
32+
* var bool = isCamelcase( 'beepBoop123' );
3333
* // returns true
3434
*
3535
* @example

lib/node_modules/@stdlib/assert/is-nonnegative-integer-array/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface IsNonNegativeIntegerArray {
2929
* @returns boolean indicating whether value is an array-like object containing only nonnegative integers
3030
*
3131
* @example
32-
* var bool = isNonNegativeIntegerArray( [ 3.0, new (3.0) ] );
32+
* var bool = isNonNegativeIntegerArray( [ 3.0, new Number(3.0) ] );
3333
* // returns true
3434
*
3535
* @example

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@ interface Namespace {
104104
* // returns ~13.5
105105
*
106106
* @example
107-
* var ns.ampbm = ns.ampbm.factory( 1.0, 0.5 );
107+
* var ampbm = ns.ampbm.factory( 1.0, 0.5 );
108108
* // returns <Function>
109109
*
110-
* var h = ns.ampbm( -5.0, 12.0 );
110+
* var h = ampbm( -5.0, 12.0 );
111111
* // returns 14.5
112112
*/
113113
ampbm: typeof ampbm;

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -215,12 +215,12 @@ interface Namespace {
215215
* // returns 5.0
216216
*
217217
* @example
218-
* var ns.fibpolyval = ns.fibpoly.factory( 5 );
218+
* var fibpolyval = ns.fibpoly.factory( 5 );
219219
*
220-
* var v = ns.fibpolyval( 1.0 );
220+
* var v = fibpolyval( 1.0 );
221221
* // returns 5.0
222222
*
223-
* v = ns.fibpolyval( 2.0 );
223+
* v = fibpolyval( 2.0 );
224224
* // returns 29.0
225225
*/
226226
fibpoly: typeof fibpoly;

lib/node_modules/@stdlib/math/iter/utils/continued-fraction/docs/types/index.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,6 @@ interface Options {
4949
* @returns result
5050
*
5151
* @example
52-
* var iterContinuedFractionSeq = require( '@stdlib/math/iter/sequences/continued-fraction' );
53-
*
5452
* // Create an iterator for generating continued fraction terms:
5553
* var it = iterContinuedFractionSeq( 3.245 );
5654
*

lib/node_modules/@stdlib/math/iter/utils/docs/types/index.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,6 @@ interface Namespace {
3838
* @returns result
3939
*
4040
* @example
41-
* var ns.iterContinuedFractionSeq = require( '@stdlib/math/iter/sequences/continued-fraction' );
42-
*
4341
* // Create an iterator for generating continued fraction terms:
4442
* var it = ns.iterContinuedFractionSeq( 3.245 );
4543
*

lib/node_modules/@stdlib/number/float64/base/docs/types/index.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -486,8 +486,6 @@ interface Namespace {
486486
* @returns nearest single-precision floating-point number
487487
*
488488
* @example
489-
* var ns.float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
490-
*
491489
* var y = ns.float64ToFloat32( 1.337 );
492490
* // returns 1.3370000123977661
493491
*/

lib/node_modules/@stdlib/number/float64/base/to-float32/docs/types/index.d.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
* @returns nearest single-precision floating-point number
2626
*
2727
* @example
28-
* var float64ToFloat32 = require( '@stdlib/number/float64/base/to-float32' );
29-
*
3028
* var y = float64ToFloat32( 1.337 );
3129
* // returns 1.3370000123977661
3230
*/

0 commit comments

Comments
 (0)