Skip to content

Commit 3486026

Browse files
committed
Auto-generated commit
1 parent f13002a commit 3486026

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@ A total of 32 issues were closed in this release:
216216

217217
<details>
218218

219+
- [`7c9afed`](https://github.com/stdlib-js/stdlib/commit/7c9afed6a288c9e7d3048dfa0ac8f085759d73f4) - **chore:** minor clean-up _(by Philipp Burckhardt)_
219220
- [`bc3632a`](https://github.com/stdlib-js/stdlib/commit/bc3632a5a7b48a8973b1418e861ddc45b3e8d0fa) - **chore:** minor clean-up _(by Philipp Burckhardt)_
220221
- [`b128b6a`](https://github.com/stdlib-js/stdlib/commit/b128b6a25775d9b319c83a9dbb521d8d9c45b8c2) - **chore:** fix ExpectType by supplying correct number of generic parameters _(by Philipp Burckhardt)_
221222
- [`4ec1d6d`](https://github.com/stdlib-js/stdlib/commit/4ec1d6d67d746b2231ae18bfaaeb2ee5a9f40697) - **docs:** minor clean-up _(by Philipp Burckhardt)_

base/bifurcate-entries-by/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
If a predicate function returns a truthy value, an array value is placed in
1212
the first group; otherwise, an array value is placed in the second group.
1313

14-
If provided an empty array, the function returns an empty object.
14+
If provided an empty array, the function returns an empty array.
1515

1616
Parameters
1717
----------
@@ -27,7 +27,7 @@
2727

2828
Returns
2929
-------
30-
out: Object
30+
out: Array
3131
Split results.
3232

3333
Examples

base/where/docs/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ interface Where {
224224
* var out = [ 0, 0, 0, 0 ];
225225
* var condition = [ true, false, true, false ];
226226
*
227-
* var arr = assign( condition, x, y, out, 1, 0 );
227+
* var arr = where.assign( condition, x, y, out, 1, 0 );
228228
* // returns [ 1, 6, 3, 8 ]
229229
*
230230
* var bool = ( arr === out );

0 commit comments

Comments
 (0)