Skip to content

Commit 0102822

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: na - 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: missing_dependencies - 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 a5f41d1 commit 0102822

File tree

9 files changed

+11
-11
lines changed

9 files changed

+11
-11
lines changed

lib/node_modules/@stdlib/blas/base/zdscal/lib/ndarray.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var scale = require( '@stdlib/complex/float64/base/scale' ).strided;
3030
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {number} da - constant
33+
* @param {number} da - scalar constant
3434
* @param {Complex128Array} zx - input array
3535
* @param {integer} strideZX - `zx` stride length
3636
* @param {NonNegativeInteger} offsetZX - starting `zx` index

lib/node_modules/@stdlib/blas/base/zdscal/lib/ndarray.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var addon = require( './../src/addon.node' );
3030
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {number} alpha - constant
33+
* @param {number} alpha - scalar constant
3434
* @param {Complex128Array} x - input array
3535
* @param {integer} strideX - `x` stride length
3636
* @param {NonNegativeInteger} offsetX - starting `x` index

lib/node_modules/@stdlib/blas/base/zdscal/lib/zdscal.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var ndarray = require( './ndarray.js' );
3030
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {number} da - constant
33+
* @param {number} da - scalar constant
3434
* @param {Complex128Array} zx - input array
3535
* @param {integer} strideZX - `zx` stride length
3636
* @returns {Complex128Array} input array

lib/node_modules/@stdlib/blas/base/zdscal/lib/zdscal.native.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ var addon = require( './../src/addon.node' );
3030
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
3131
*
3232
* @param {PositiveInteger} N - number of indexed elements
33-
* @param {number} alpha - constant
33+
* @param {number} alpha - scalar constant
3434
* @param {Complex128Array} x - input array
3535
* @param {integer} strideX - `x` stride length
3636
* @param {NonNegativeInteger} offsetX - starting `x` index

lib/node_modules/@stdlib/blas/base/zdscal/src/zdscal.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
2525
*
2626
* @param N number of indexed elements
27-
* @param alpha constant
27+
* @param alpha scalar constant
2828
* @param X input array
2929
* @param strideX X stride length
3030
*/

lib/node_modules/@stdlib/blas/base/zdscal/src/zdscal.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
! > * We will gladly answer any questions regarding the software. If a modification is done, however, it is the responsibility of the person who modified the routine to provide support.
4343
!
4444
! @param {integer} N - number of indexed elements
45-
! @param {double} alpha - constant
45+
! @param {double} alpha - scalar constant
4646
! @param {Array<complex<double>>} x - input array
4747
! @param {integer} strideX - `x` stride length
4848
!<

lib/node_modules/@stdlib/blas/base/zdscal/src/zdscal_cblas.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
2727
*
2828
* @param N number of indexed elements
29-
* @param alpha constant
29+
* @param alpha scalar constant
3030
* @param X input array
3131
* @param strideX X stride length
3232
*/
@@ -42,7 +42,7 @@ void API_SUFFIX(c_zdscal)( const CBLAS_INT N, const double alpha, void *X, const
4242
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant using alternative indexing semantics.
4343
*
4444
* @param N number of indexed elements
45-
* @param alpha constant
45+
* @param alpha scalar constant
4646
* @param X input array
4747
* @param strideX X stride length
4848
* @param offsetX starting index for X

lib/node_modules/@stdlib/blas/base/zdscal/src/zdscal_f.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant.
2727
*
2828
* @param N number of indexed elements
29-
* @param alpha constant
29+
* @param alpha scalar constant
3030
* @param X input array
3131
* @param strideX X stride length
3232
*/
@@ -42,7 +42,7 @@ void API_SUFFIX(c_zdscal)( const CBLAS_INT N, const double alpha, void *X, const
4242
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant using alternative indexing semantics.
4343
*
4444
* @param N number of indexed elements
45-
* @param alpha constant
45+
* @param alpha scalar constant
4646
* @param X input array
4747
* @param strideX X stride length
4848
* @param offsetX starting index for X

lib/node_modules/@stdlib/blas/base/zdscal/src/zdscal_ndarray.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Scales a double-precision complex floating-point vector by a double-precision floating-point constant using alternative indexing semantics.
2626
*
2727
* @param N number of indexed elements
28-
* @param alpha constant
28+
* @param alpha scalar constant
2929
* @param X input array
3030
* @param strideX X stride length
3131
* @param offsetX starting index for X

0 commit comments

Comments
 (0)