Skip to content

Commit 1e07403

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: passed - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: na - 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: passed - task: lint_license_headers status: passed ---
1 parent a4c492b commit 1e07403

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

lib/node_modules/@stdlib/blas/ext/base/ndarray/zsumkbn/test/test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ tape( 'the function computes the sum of all elements in a one-dimensional ndarra
8585
t.end();
8686
});
8787

88-
tape( 'if provided an empty ndarray, the function returns `0.0`', function test( t ) {
88+
tape( 'if provided an empty ndarray, the function returns `0.0 + 0.0i`', function test( t ) {
8989
var x;
9090
var v;
9191

lib/node_modules/@stdlib/constants/float16/min-ln/docs/repl.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@
1010

1111
See Also
1212
--------
13+

lib/node_modules/@stdlib/stats/meankbn2/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ interface Unary {
110110
}
111111

112112
/**
113-
* Computes the arithmetic mean along one or more ndarray dimensions.
113+
* Computes the arithmetic mean along one or more ndarray dimensions using a second-order iterative Kahan-Babuska algorithm.
114114
*
115115
* @param x - input ndarray
116116
* @param options - function options

lib/node_modules/@stdlib/stats/mediansorted/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ The method accepts the following options:
196196
## Notes
197197

198198
- Setting the `keepdims` option to `true` can be useful when wanting to ensure that the output [ndarray][@stdlib/ndarray/ctor] is [broadcast-compatible][@stdlib/ndarray/base/broadcast-shapes] with ndarrays having the same shape as the input [ndarray][@stdlib/ndarray/ctor].
199-
- The output data type [policy][@stdlib/ndarray/output-dtype-policies] only applies to the main function and specifies that, by default, the function must return an [ndarray][@stdlib/ndarray/ctor] having a real-valued or "generic" [data type][@stdlib/ndarray/dtypes]. For the `assign` method, the output [ndarray][@stdlib/ndarray/ctor] is allowed to have any supported output [data type][@stdlib/ndarray/dtypes].
199+
- The output data type [policy][@stdlib/ndarray/output-dtype-policies] only applies to the main function and specifies that, by default, the function must return an [ndarray][@stdlib/ndarray/ctor] having the same [data type][@stdlib/ndarray/dtypes] as the input [ndarray][@stdlib/ndarray/ctor]. For the `assign` method, the output [ndarray][@stdlib/ndarray/ctor] is allowed to have any supported output [data type][@stdlib/ndarray/dtypes].
200200

201201
</section>
202202

0 commit comments

Comments
 (0)