Skip to content

Commit 872e8a1

Browse files
committed
Auto-generated commit
1 parent 7846513 commit 872e8a1

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

CHANGELOG.md

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

7-
## Unreleased (2025-08-20)
7+
## Unreleased (2025-08-21)
88

99
<section class="features">
1010

@@ -143,9 +143,9 @@
143143

144144
### Closed Issues
145145

146-
A total of 6 issues were closed in this release:
146+
A total of 7 issues were closed in this release:
147147

148-
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694)
148+
[#6004](https://github.com/stdlib-js/stdlib/issues/6004), [#6786](https://github.com/stdlib-js/stdlib/issues/6786), [#6800](https://github.com/stdlib-js/stdlib/issues/6800), [#7060](https://github.com/stdlib-js/stdlib/issues/7060), [#7350](https://github.com/stdlib-js/stdlib/issues/7350), [#7694](https://github.com/stdlib-js/stdlib/issues/7694), [#7914](https://github.com/stdlib-js/stdlib/issues/7914)
149149

150150
</section>
151151

@@ -157,6 +157,7 @@ A total of 6 issues were closed in this release:
157157

158158
<details>
159159

160+
- [`d2b9b0c`](https://github.com/stdlib-js/stdlib/commit/d2b9b0c10f35487713f6925c360b504a1f9e0a14) - **chore:** address commit comments for commit `1acd7fc` [(#7917)](https://github.com/stdlib-js/stdlib/pull/7917) _(by Srinivas Batthula, Philipp Burckhardt)_
160161
- [`e9c5955`](https://github.com/stdlib-js/stdlib/commit/e9c5955756fe9c633f6f67e42882394cc7c50148) - **docs:** update annotation to convey there may be inherited props _(by Philipp Burckhardt)_
161162
- [`bef0f69`](https://github.com/stdlib-js/stdlib/commit/bef0f69a3c1007126ef264c4148c41497079eaad) - **docs:** re-order requires _(by Philipp Burckhardt)_
162163
- [`1acd7fc`](https://github.com/stdlib-js/stdlib/commit/1acd7fc7114fcbef1b80ab506f6f47d3532d6ea8) - **docs:** fix example code _(by Philipp Burckhardt)_
@@ -231,7 +232,7 @@ A total of 6 issues were closed in this release:
231232

232233
### Contributors
233234

234-
A total of 9 people contributed to this release. Thank you to the following contributors:
235+
A total of 10 people contributed to this release. Thank you to the following contributors:
235236

236237
- Athan Reines
237238
- Gururaj Gurram
@@ -240,6 +241,7 @@ A total of 9 people contributed to this release. Thank you to the following cont
240241
- Neeraj Pathak
241242
- Philipp Burckhardt
242243
- Satyajeet Chavan
244+
- Srinivas Batthula
243245
- Uday Kakade
244246
- zhanggy
245247

none-own-by/lib/index.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
* var noneOwnBy = require( '@stdlib/utils/none-own-by' );
2828
*
2929
* function isUnderage( age ) {
30-
* return age < 18;
30+
* return age < 18;
3131
* }
3232
*
3333
* var obj = {
34-
* a : 10,
35-
* b : 12,
36-
* c : 15
34+
* 'a': 10,
35+
* 'b': 12,
36+
* 'c': 15
3737
* };
3838
*
3939
* var bool = noneOwnBy( obj, isUnderage );

0 commit comments

Comments
 (0)