Skip to content

Commit 6028758

Browse files
docs: update namespace TypeScript declaration comments
PR-URL: #4758 Co-authored-by: Philipp Burckhardt <pburckhardt@outlook.com> Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com> Signed-off-by: stdlib-bot <82920195+stdlib-bot@users.noreply.github.com>
1 parent cd9bb62 commit 6028758

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lib/node_modules/@stdlib/blas/ext/base/docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2361,12 +2361,12 @@ interface Namespace {
23612361
sapxsumkbn2: typeof sapxsumkbn2;
23622362

23632363
/**
2364-
* Adds a constant to each single-precision floating-point strided array element and computes the sum using ordinary recursive summation.
2364+
* Adds a scalar constant to each single-precision floating-point strided array element and computes the sum using ordinary recursive summation.
23652365
*
23662366
* @param N - number of indexed elements
2367-
* @param alpha - constant
2367+
* @param alpha - scalar constant
23682368
* @param x - input array
2369-
* @param stride - stride length
2369+
* @param strideX - stride length
23702370
* @returns sum
23712371
*
23722372
* @example

lib/node_modules/@stdlib/number/float32/base/docs/types/index.d.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,13 @@ interface Namespace {
162162
*
163163
* @example
164164
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
165+
*
165166
* var bool = ns.signbitf( toFloat32( 4.0 ) );
166167
* // returns false
167168
*
168169
* @example
169170
* var toFloat32 = require( '@stdlib/number/float64/base/to-float32' );
171+
*
170172
* var bool = ns.signbitf( toFloat32( -9.14e-34 ) );
171173
* // returns true
172174
*

0 commit comments

Comments
 (0)