Skip to content

Commit d5fab27

Browse files
Planeshifteranandkaranubc
authored andcommitted
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: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: passed - 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 c44169e commit d5fab27

File tree

6 files changed

+7
-6
lines changed

6 files changed

+7
-6
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ interface EvalRational {
6565
* var P = new Float32Array( [ -6.0, -5.0, 4.0, 2.0 ] );
6666
*
6767
* // 0.5x^1 + 3x^0 => degree 2
68-
* var Q = new Float32Array( [ 3.0, 0.5, 0.0, 0.0 ]; // zero-padde )d
68+
* var Q = new Float32Array( [ 3.0, 0.5, 0.0, 0.0 ] ); // zero-padded
6969
*
7070
* var v = evalrationalf( P, Q, 6.0 ); // => ( -6*6^0 - 5*6^1 + 4*6^2 + 2*6^3 ) / ( 3*6^0 + 0.5*6^1 + 0*6^2 + 0*6^3 ) = (-6-30+144+432)/(3+3)
7171
* // returns ~90.0

lib/node_modules/@stdlib/math/iter/sequences/fifth-powers/docs/repl.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
Function options.
1212

1313
options.iter: integer (optional)
14-
Number of iterations. Default: 9741.
14+
Number of iterations. Default: 1552.
1515

1616
Returns
1717
-------

lib/node_modules/@stdlib/math/iter/sequences/fifth-powers/lib/main.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ var MAX_ITER = 1552; // floor((FLOAT64_MAX_SAFE_INTEGER)^0.2)
4040
* - If an environment supports `Symbol.iterator`, the returned iterator is iterable.
4141
*
4242
* @param {Options} [options] - function options
43-
* @param {NonNegativeInteger} [options.iter=9741] - number of iterations
43+
* @param {NonNegativeInteger} [options.iter=1552] - number of iterations
4444
* @throws {TypeError} options argument must be an object
4545
* @throws {TypeError} must provide valid options
4646
* @returns {Iterator} iterator

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,6 @@ interface Options {
6969
declare function iterTribonacciSeq( options?: Options ): Iterator;
7070

7171

72-
// EXPORTS //s
72+
// EXPORTS //
7373

7474
export = iterTribonacciSeq;

lib/node_modules/@stdlib/math/iter/sequences/tribonacci/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ var F2 = 1;
3939
*
4040
* ## Notes
4141
*
42-
* - The returned iterator can only generate the first `63` Tribonacci numbers, as larger Tribonacci numbers cannot be safely represented in double-precision floating-point format.
42+
* - The returned iterator can only generate the first `64` Tribonacci numbers, as larger Tribonacci numbers cannot be safely represented in double-precision floating-point format.
4343
* - If an environment supports `Symbol.iterator`, the returned iterator is iterable.
4444
*
4545
* @param {Options} [options] - function options
@@ -118,7 +118,7 @@ function iterTribonacciSeq( options ) {
118118
} else if ( i === 2 ) {
119119
f = F1;
120120
} else if ( i === 3 ) {
121-
f=F2;
121+
f = F2;
122122
} else {
123123
f = f1 + f2 + f3;
124124
f1 = f2;

lib/node_modules/@stdlib/math/iter/special/acos/test/test.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,7 @@ tape( 'the function returns an iterator protocol-compliant object which computes
106106

107107
t.end();
108108
});
109+
109110
tape( 'the function returns an iterator protocol-compliant object which returns `NaN` if provided a non-numeric value', function test( t ) {
110111
var expected;
111112
var values;

0 commit comments

Comments
 (0)