Skip to content

Commit 442d1f9

Browse files
authored
chore: correct issues found during recent develop commit review
PR-URL: #12201 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent 8b4a8d3 commit 442d1f9

3 files changed

Lines changed: 2 additions & 4 deletions

File tree

.npmrc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ sign-git-commit = true
3838
sign-git-tag = true
3939

4040
# Run Git commit hooks when using `npm version`:
41-
commits-hooks = true
41+
commit-hooks = true
4242

4343
# Require that dependencies within the dependency tree have a minimum release age (in days) in order to guard against supply chain attacks:
44-
min-release-age: 90
44+
min-release-age = 90

lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/ndarray.native.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var addon = require( './../src/addon.node' );
2828
/**
2929
* Multiplies each element in a single-precision floating-point strided array by a scalar constant and adds a scalar constant to each result using alternative indexing semantics.
3030
*
31-
* @private
3231
* @param {PositiveInteger} N - number of indexed elements
3332
* @param {number} alpha - first scalar constant
3433
* @param {number} beta - second scalar constant

lib/node_modules/@stdlib/blas/ext/base/saxpb/lib/saxpb.native.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ var addon = require( './../src/addon.node' );
2828
/**
2929
* Multiplies each element in a single-precision floating-point strided array by a scalar constant and adds a scalar constant to each result.
3030
*
31-
* @private
3231
* @param {PositiveInteger} N - number of indexed elements
3332
* @param {number} alpha - first scalar constant
3433
* @param {number} beta - second scalar constant

0 commit comments

Comments
 (0)