Skip to content

Commit ef4d785

Browse files
committed
Auto-generated commit
1 parent 5fa761d commit ef4d785

6 files changed

Lines changed: 12 additions & 7 deletions

File tree

.github/.keepalive

Lines changed: 0 additions & 1 deletion
This file was deleted.

CHANGELOG.md

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

7-
## Unreleased (2025-05-19)
7+
## Unreleased (2025-05-20)
88

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`a9d4530`](https://github.com/stdlib-js/stdlib/commit/a9d4530c9e486f49e6d13b8bd2d3dfaeda41cb06) - **docs:** update example and function description _(by Karan Anand)_
1516
- [`5b8deb1`](https://github.com/stdlib-js/stdlib/commit/5b8deb1707b3e84534d70d2ac20253de39151947) - **bench:** update random value generation [(#6381)](https://github.com/stdlib-js/stdlib/pull/6381) _(by Harsh)_
1617

1718
</details>
@@ -24,9 +25,10 @@
2425

2526
### Contributors
2627

27-
A total of 1 person contributed to this release. Thank you to this contributor:
28+
A total of 2 people contributed to this release. Thank you to the following contributors:
2829

2930
- Harsh
31+
- Karan Anand
3032

3133
</section>
3234

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/repl.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131

3232

3333
{{alias}}.assign( x, y, out, stride, offset )
34-
Returns the minimum and maximum absolute values.
34+
Returns the minimum and maximum absolute values and assigns results to a
35+
provided output array.
3536

3637
If any argument is `NaN`, the function returns `NaN` for both the minimum
3738
and maximum absolute values.

docs/types/index.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,9 @@
2222

2323
import { Collection } from '@stdlib/types/array';
2424

25+
/**
26+
* Interface describing an interface for computing minimum and maximum absolute values.
27+
*/
2528
interface MinMaxAbs {
2629
/**
2730
* Returns the minimum and maximum absolute values.
@@ -45,7 +48,7 @@ interface MinMaxAbs {
4548
( x: number, y: number ): Array<number>;
4649

4750
/**
48-
* Returns the minimum and maximum absolute values.
51+
* Returns the minimum and maximum absolute values and assigns results to a provided output array.
4952
*
5053
* @param x - first number
5154
* @param y - second number

lib/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
* v = minmaxabs( +0.0, -0.0 );
3939
* // returns [ 0.0, 0.0 ]
4040
*
41-
* v = minmaxabs( 3.14 );
41+
* v = minmaxabs( 3.14, -3.14 );
4242
* // returns [ 3.14, 3.14 ]
4343
*/
4444

0 commit comments

Comments
 (0)