Skip to content

Commit 7f48e8f

Browse files
committed
Auto-generated commit
1 parent 3266714 commit 7f48e8f

6 files changed

Lines changed: 30 additions & 9 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,18 @@
44
55
<section class="release" id="unreleased">
66

7-
## Unreleased (2026-04-23)
7+
## Unreleased (2026-04-27)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`8b687a9`](https://github.com/stdlib-js/stdlib/commit/8b687a9fcb935144ef3a544458e33830c95dc3df) - **docs:** update descriptions _(by Athan Reines)_
16+
- [`bdc1f9b`](https://github.com/stdlib-js/stdlib/commit/bdc1f9beed8120b36f6cb9fae9a5f28c091654f1) - **docs:** add notes _(by Athan Reines)_
17+
- [`f5a9f7d`](https://github.com/stdlib-js/stdlib/commit/f5a9f7d31e7d8877e5e3556533382e8e7e02c58e) - **docs:** update descriptions _(by Athan Reines)_
18+
- [`be5b88f`](https://github.com/stdlib-js/stdlib/commit/be5b88f6f8b66169d6a849762671816069e2a95c) - **docs:** update copy _(by Athan Reines)_
1519
- [`0779fd4`](https://github.com/stdlib-js/stdlib/commit/0779fd40d190cee898a170518996788f07d1e755) - **chore:** modernize examples and benchmarks _(by Athan Reines)_
1620
- [`39db70f`](https://github.com/stdlib-js/stdlib/commit/39db70f0446038735b98e82abc26b369ac34938f) - **bench:** refactor to use string interpolation in `@stdlib/blas` [(#11397)](https:-/github.com/stdlib-js/stdlib/pull/11397) _(by Karan Anand)_
1721
- [`04fd54f`](https://github.com/stdlib-js/stdlib/commit/04fd54f42c8c1b0af88660d7ce791f71891a2187) - **refactor:** improve type specificity in `blas/base/ndarray/gdot` [(#11245)](https://github.com/stdlib-js/stdlib/pull/11245) _(by Kaustubh Patange)_

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,10 +100,10 @@ var z = gdot( [ x, y ] );
100100

101101
The function has the following parameters:
102102

103-
- **arrays**: array-like object containing the following ndarrays in order:
103+
- **arrays**: array-like object containing the following ndarrays:
104104

105-
- first input ndarray
106-
- second input ndarray
105+
- first one-dimensional input ndarray.
106+
- second one-dimensional input ndarray.
107107

108108
</section>
109109

dist/index.js.map

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/repl.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@
77
Parameters
88
----------
99
arrays: ArrayLikeObject<ndarray>
10-
Array-like object containing two one-dimensional input ndarrays.
10+
Array-like object containing the following ndarrays:
11+
12+
- first one-dimensional input ndarray.
13+
- second one-dimensional input ndarray.
1114

1215
Returns
1316
-------

docs/types/index.d.ts

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,14 @@ import { typedndarray } from '@stdlib/types/ndarray';
2525
/**
2626
* Computes the dot product of two one-dimensional ndarrays.
2727
*
28-
* @param arrays - array-like object containing two one-dimensional input ndarrays
28+
* ## Notes
29+
*
30+
* - The function expects the following ndarrays:
31+
*
32+
* - first one-dimensional input ndarray.
33+
* - second one-dimensional input ndarray.
34+
*
35+
* @param arrays - array-like object containing ndarrays
2936
* @returns dot product
3037
*
3138
* @example

lib/main.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,14 @@ var strided = require( '@stdlib/blas-base-gdot' ).ndarray;
3232
/**
3333
* Computes the dot product of two one-dimensional ndarrays.
3434
*
35-
* @param {ArrayLikeObject<Object>} arrays - array-like object containing two one-dimensional input ndarrays
35+
* ## Notes
36+
*
37+
* - The function expects the following ndarrays:
38+
*
39+
* - first one-dimensional input ndarray.
40+
* - second one-dimensional input ndarray.
41+
*
42+
* @param {ArrayLikeObject<Object>} arrays - array-like object containing ndarrays
3643
* @returns {number} dot product
3744
*
3845
* @example

0 commit comments

Comments
 (0)