Skip to content

Commit 4ed822d

Browse files
authored
docs: follow-up fixes for commits merged to develop on 2026-05-26
PR-URL: #12300 Reviewed-by: Athan Reines <kgryte@gmail.com>
1 parent ba77943 commit 4ed822d

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

lib/node_modules/@stdlib/blas/base/ndarray/dsdot/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ limitations under the License.
2020

2121
# dsdot
2222

23-
> Calculate the dot product of two one-dimensional single-precision floating-point ndarrays.
23+
> Calculate the dot product of two one-dimensional single-precision floating-point ndarrays with double-precision accumulation.
2424
2525
<section class="intro">
2626

@@ -53,7 +53,7 @@ var dsdot = require( '@stdlib/blas/base/ndarray/dsdot' );
5353

5454
#### dsdot( arrays )
5555

56-
Computes the dot product of two one-dimensional single-precision floating-point ndarrays.
56+
Computes the dot product of two one-dimensional single-precision floating-point ndarrays with double-precision accumulation.
5757

5858
```javascript
5959
var Float32Vector = require( '@stdlib/ndarray/vector/float32' );

lib/node_modules/@stdlib/blas/base/ndarray/sdsdot/docs/repl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@
33
Computes the dot product of two one-dimensional single-precision floating-
44
point ndarrays with extended accumulation.
55

6-
If provided an empty input ndarray, the function returns `0.0`.
6+
If provided an empty input ndarray, the function returns the scalar
7+
constant.
78

89
Parameters
910
----------

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ interface Routine {
2929
* @param alpha - scalar constant
3030
* @param x - input array
3131
* @param strideX - stride length
32-
* @returns input array
32+
* @returns `x`
3333
*
3434
* @example
3535
* var Float64Array = require( '@stdlib/array/float64' );
@@ -49,7 +49,7 @@ interface Routine {
4949
* @param x - input array
5050
* @param strideX - stride length
5151
* @param offsetX - starting index
52-
* @returns input array
52+
* @returns `x`
5353
*
5454
* @example
5555
* var Float64Array = require( '@stdlib/array/float64' );
@@ -69,7 +69,7 @@ interface Routine {
6969
* @param alpha - scalar constant
7070
* @param x - input array
7171
* @param strideX - stride length
72-
* @returns input array
72+
* @returns `x`
7373
*
7474
* @example
7575
* var Float64Array = require( '@stdlib/array/float64' );

lib/node_modules/@stdlib/blas/ext/base/dxsa/lib/dxsa.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
'use strict';
2020

21-
// VARIABLES //
21+
// MODULES //
2222

2323
var stride2offset = require( '@stdlib/strided/base/stride2offset' );
2424
var ndarray = require( './ndarray.js' );

0 commit comments

Comments
 (0)