You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+34Lines changed: 34 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,40 @@
2
2
3
3
> Package changelog.
4
4
5
+
<sectionclass="release"id="unreleased">
6
+
7
+
## Unreleased (2025-06-25)
8
+
9
+
<sectionclass="commits">
10
+
11
+
### Commits
12
+
13
+
<details>
14
+
15
+
-[`7c9afed`](https://github.com/stdlib-js/stdlib/commit/7c9afed6a288c9e7d3048dfa0ac8f085759d73f4) - **chore:** minor clean-up _(by Philipp Burckhardt)_
16
+
17
+
</details>
18
+
19
+
</section>
20
+
21
+
<!-- /.commits -->
22
+
23
+
<sectionclass="contributors">
24
+
25
+
### Contributors
26
+
27
+
A total of 1 person contributed to this release. Thank you to this contributor:
Copy file name to clipboardExpand all lines: docs/types/index.d.ts
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -34,7 +34,7 @@ type PredicateFunction = ( elem: any ) => boolean;
34
34
* - The predicate function should accept a single argument: an element from an array-like object. If the element satisfies a test condition, the function should return `true`; otherwise, the function should return `false`.
35
35
* - Given an input array-like object, the returned function returns `true` if all elements pass the test and `false` otherwise.
36
36
* - The returned function returns `false` if provided an empty array-like object.
37
-
* - The returned function returns `false` is not provided an array-like object.
37
+
* - The returned function returns `false` if not provided an array-like object.
0 commit comments