Skip to content

Commit a2556fa

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: 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: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 30ec388 commit a2556fa

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

lib/node_modules/@stdlib/blas/ext/base/ndarray/gfind-index/README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ var gfindIndex = require( '@stdlib/blas/ext/base/ndarray/gfind-index' );
4141
Returns the index of the first element in a one-dimensional ndarray which passes a test implemented by a predicate function.
4242

4343
```javascript
44-
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
4544
var ndarray = require( '@stdlib/ndarray/base/ctor' );
4645

4746
function isEven( v ) {
@@ -58,7 +57,6 @@ var idx = gfindIndex( [ x ], isEven );
5857
If no element passes a test implemented by a predicate function, the function returns `-1`.
5958

6059
```javascript
61-
var scalar2ndarray = require( '@stdlib/ndarray/from-scalar' );
6260
var ndarray = require( '@stdlib/ndarray/base/ctor' );
6361

6462
function isEven( v ) {

lib/node_modules/@stdlib/blas/ext/base/ndarray/gfind-index/lib/main.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,6 @@ function gfindIndex( arrays, clbk, thisArg ) {
6060
* @private
6161
* @param {*} value - current array element
6262
* @param {NonNegativeInteger} aidx - current array element index
63-
* @param {NonNegativeInteger} sidx - current strided array element index
64-
* @param {Collection} arr - input array
6563
* @returns {*} result
6664
*/
6765
function wrapper( value, aidx ) {

0 commit comments

Comments
 (0)