Skip to content

Commit 7e63571

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: na - task: lint_javascript_src status: passed - 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: passed - 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 ff76be4 commit 7e63571

6 files changed

Lines changed: 6 additions & 6 deletions

File tree

lib/node_modules/@stdlib/object/bifurcate-in/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ var opts = {
143143
'returns': '*'
144144
};
145145
var out = bifurcateIn( obj, opts, predicate );
146-
// e.g., returns [ [ [ 'a', 'beep' ], [ 'b', 'boop ], [ 'd', 'bar' ] ], [ [ 'c', 'foo' ] ] ]
146+
// e.g., returns [ [ [ 'a', 'beep' ], [ 'b', 'boop' ], [ 'd', 'bar' ] ], [ [ 'c', 'foo' ] ] ]
147147
```
148148

149149
To set the `predicate` execution context, provide a `thisArg`.

lib/node_modules/@stdlib/stats/strided/distances/deuclidean/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ var drrss = require( '@stdlib/blas/ext/base/drrss' ).ndarray;
4747
* // returns ~8.485
4848
*/
4949
function deuclidean( N, x, strideX, offsetX, y, strideY, offsetY ) {
50-
if ( N <= 0.0 ) {
50+
if ( N <= 0 ) {
5151
return NaN;
5252
}
5353
return drrss( N, x, strideX, offsetX, y, strideY, offsetY );

lib/node_modules/@stdlib/stats/strided/distances/deuclidean/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ double API_SUFFIX(stdlib_strided_deuclidean)( const CBLAS_INT N, const double *X
5050
* @return Euclidean distance
5151
*/
5252
double API_SUFFIX(stdlib_strided_deuclidean_ndarray)( const CBLAS_INT N, const double *X, const CBLAS_INT strideX, const CBLAS_INT offsetX, const double *Y, const CBLAS_INT strideY, const CBLAS_INT offsetY ) {
53-
if ( N <= 0.0 ) {
53+
if ( N <= 0 ) {
5454
return 0.0/0.0; // NaN
5555
}
5656
return stdlib_strided_drrss_ndarray( N, X, strideX, offsetX, Y, strideY, offsetY );

lib/node_modules/@stdlib/utils/bifurcate-own/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ var opts = {
122122
'returns': '*'
123123
};
124124
var out = bifurcateOwn( obj, opts, predicate );
125-
// e.g., returns [ [ [ 'a', 'beep' ], [ 'b', 'boop ], [ 'd', 'bar' ] ], [ [ 'c', 'foo' ] ] ]
125+
// e.g., returns [ [ [ 'a', 'beep' ], [ 'b', 'boop' ], [ 'd', 'bar' ] ], [ [ 'c', 'foo' ] ] ]
126126
```
127127

128128
To set the `predicate` execution context, provide a `thisArg`.

lib/node_modules/@stdlib/utils/group-in/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ var opts = {
146146
'returns': '*'
147147
};
148148
var out = groupIn( obj, opts, indicator );
149-
// e.g., returns { 'b': [ [ 'a', 'beep' ], [ 'b', 'boop ], [ 'd', 'bar' ] ], 'f': [ [ 'c', 'foo' ] ] }
149+
// e.g., returns { 'b': [ [ 'a', 'beep' ], [ 'b', 'boop' ], [ 'd', 'bar' ] ], 'f': [ [ 'c', 'foo' ] ] }
150150
```
151151

152152
To set the `indicator` execution context, provide a `thisArg`.

lib/node_modules/@stdlib/utils/group-own/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ var opts = {
122122
'returns': '*'
123123
};
124124
var out = groupOwn( obj, opts, indicator );
125-
// e.g., returns { 'b': [ [ 'a', 'beep' ], [ 'b', 'boop ], [ 'd', 'bar' ] ], 'f': [ [ 'c', 'foo' ] ] }
125+
// e.g., returns { 'b': [ [ 'a', 'beep' ], [ 'b', 'boop' ], [ 'd', 'bar' ] ], 'f': [ [ 'c', 'foo' ] ] }
126126
```
127127

128128
To set the `indicator` execution context, provide a `thisArg`.

0 commit comments

Comments
 (0)