Skip to content

Commit 2bba174

Browse files
committed
Auto-generated commit
1 parent 02bcd1e commit 2bba174

3 files changed

Lines changed: 9 additions & 7 deletions

File tree

.github/.keepalive

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

CHANGELOG.md

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

7-
## Unreleased (2026-05-31)
7+
## Unreleased (2026-06-04)
88

99
<section class="issues">
1010

@@ -24,6 +24,7 @@ This release closes the following issue:
2424

2525
<details>
2626

27+
- [`9ad27d6`](https://github.com/stdlib-js/stdlib/commit/9ad27d68a433072554c8340fd5ea86266ab487fb) - **docs:** fix TSDoc errors in `assert` declarations [(#12454)](https://github.com/stdlib-js/stdlib/pull/12454) _(by Philipp Burckhardt, Athan Reines)_
2728
- [`67c0a20`](https://github.com/stdlib-js/stdlib/commit/67c0a2044e515ea6733765a48be54f09ea749d8f) - **bench:** refactor to use string interpolation in `@stdlib/assert` [(#11398)](https:-/github.com/stdlib-js/stdlib/pull/11398) _(by Karan Anand)_
2829
- [`a23f66e`](https://github.com/stdlib-js/stdlib/commit/a23f66e92903ea4bd88c0fb0bfcd49c80d17ddf7) - **chore:** remove unused ESLint directive [(#11100)](https://github.com/stdlib-js/stdlib/pull/11100) _(by Matt Van Horn)_
2930

@@ -37,10 +38,12 @@ This release closes the following issue:
3738

3839
### Contributors
3940

40-
A total of 2 people contributed to this release. Thank you to the following contributors:
41+
A total of 4 people contributed to this release. Thank you to the following contributors:
4142

43+
- Athan Reines
4244
- Karan Anand
4345
- Matt Van Horn
46+
- Philipp Burckhardt
4447

4548
</section>
4649

docs/types/index.d.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ interface IsNonPositiveNumberArray {
3939
( value: any ): value is ArrayLike<number | Number>;
4040

4141
/**
42-
* Tests if a value is an array-like object containing only nonpositive primitive integer values.
42+
* Tests if a value is an array-like object containing only nonpositive primitive number values.
4343
*
4444
* @param value - value to test
45-
* @returns boolean indicating whether value is an array-like object containing only nonpositive primitive integer values
45+
* @returns boolean indicating whether value is an array-like object containing only nonpositive primitive number values
4646
*
4747
* @example
4848
* var bool = isNonPositiveNumberArray.primitives( [ -1.0, -10.0 ] );
@@ -59,10 +59,10 @@ interface IsNonPositiveNumberArray {
5959
primitives( value: any ): value is ArrayLike<number>;
6060

6161
/**
62-
* Tests if a value is an array-like object containing only number objects having nonpositive integer values.
62+
* Tests if a value is an array-like object containing only number objects having nonpositive number values.
6363
*
6464
* @param value - value to test
65-
* @returns boolean indicating whether value is an array-like object containing only number objects having nonpositive integer values
65+
* @returns boolean indicating whether value is an array-like object containing only number objects having nonpositive number values
6666
*
6767
* @example
6868
* var bool = isNonPositiveNumberArray.objects( [ new Number(-1.0), new Number(-10.0) ] );

0 commit comments

Comments
 (0)