Skip to content

Commit 08537f8

Browse files
committed
Auto-generated commit
1 parent 29b682f commit 08537f8

3 files changed

Lines changed: 8 additions & 6 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,14 +4,15 @@
44
55
<section class="release" id="unreleased">
66

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

99
<section class="commits">
1010

1111
### Commits
1212

1313
<details>
1414

15+
- [`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)_
1516
- [`342466e`](https://github.com/stdlib-js/stdlib/commit/342466efa3e8837ecd245ff3dd51ef0c40c52ed6) - **bench:** refactor to use string interpolation in `@stdlib/assert` [(#11399)](https:-/github.com/stdlib-js/stdlib/pull/11399) _(by Karan Anand)_
1617

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

2526
### Contributors
2627

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

30+
- Athan Reines
2931
- Karan Anand
32+
- Philipp Burckhardt
3033

3134
</section>
3235

docs/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ interface IsSymbolArray {
3030
* - In pre-ES2015 environments, the function always returns `false`.
3131
*
3232
* @param value - value to test
33-
* @returns boolean indicating whether value is an array of strings
33+
* @returns boolean indicating whether value is an array-like object containing only symbols
3434
*
3535
* @example
3636
* var bool = isSymbolArray( [ Symbol( 'abc' ), Symbol( 'def' ) ] );
@@ -50,7 +50,7 @@ interface IsSymbolArray {
5050
* - In pre-ES2015 environments, the function always returns `false`.
5151
*
5252
* @param value - value to test
53-
* @returns boolean indicating whether value is an array containing only string primitives
53+
* @returns boolean indicating whether value is an array-like object containing only symbol primitives
5454
*
5555
* @example
5656
* var bool = isSymbolArray.primitives( [ Symbol( 'abc' ), Symbol( 'def' ) ] );
@@ -92,7 +92,7 @@ interface IsSymbolArray {
9292
* - In pre-ES2015 environments, the function always returns `false`.
9393
*
9494
* @param value - value to test
95-
* @returns boolean indicating whether value is an array of strings
95+
* @returns boolean indicating whether value is an array-like object containing only symbols
9696
*
9797
* @example
9898
* var bool = isSymbolArray( [ Symbol( 'abc' ), Symbol( 'def' ) ] );

0 commit comments

Comments
 (0)