Skip to content

Commit 168de01

Browse files
authored
docs: update parameter description in blas/base/csscal
PR-URL: #7399 Reviewed-by: Athan Reines <[email protected]>
1 parent 18e08fc commit 168de01

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/node_modules/@stdlib/blas/base/csscal/lib/csscal.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 single-precision complex floating-point vector by a single-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 {Complex64Array} x - input array
3535
* @param {integer} strideX - `x` stride length
3636
* @returns {Complex64Array} input array

lib/node_modules/@stdlib/blas/base/csscal/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/float32/base/scale' ).strided;
3030
* Scales a single-precision complex floating-point vector by a single-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 {Complex64Array} x - input array
3535
* @param {integer} strideX - `x` stride length
3636
* @param {NonNegativeInteger} offsetX - starting `x` index

0 commit comments

Comments
 (0)