Skip to content

Commit bdb0476

Browse files
committed
Auto-generated commit
1 parent c4d8d46 commit bdb0476

File tree

33 files changed

+184
-181
lines changed

33 files changed

+184
-181
lines changed

CHANGELOG.md

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

7-
## Unreleased (2024-09-18)
7+
## Unreleased (2024-09-21)
88

99
<section class="packages">
1010

@@ -245,6 +245,7 @@ A total of 5 people contributed to this release. Thank you to the following cont
245245

246246
<details>
247247

248+
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
248249
- [`20dea8a`](https://github.com/stdlib-js/stdlib/commit/20dea8af2b14181aa75354f7e3aeb65b955904b9) - **docs:** remove extraneous newline _(by Athan Reines)_
249250
- [`f387603`](https://github.com/stdlib-js/stdlib/commit/f387603e739f88a38af3263ce6ff675ad903ee8c) - **docs:** consistently use declarative instead of imperative sentences outside of intros _(by Philipp Burckhardt)_
250251
- [`31fd427`](https://github.com/stdlib-js/stdlib/commit/31fd42744ec5d7073041f97c6f72350b8005c0fc) - **style:** remove unwanted empty lines _(by Philipp Burckhardt)_

base/accessor-getter/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
An accessor function accepts the following arguments:
77

8-
- arr: input array
9-
- idx: element index
8+
- arr: input array.
9+
- idx: element index.
1010

1111
If provided an unsupported `dtype`, the function returns a default accessor
1212
function for accessing elements from any indexed array-like object

base/accessor-setter/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
An accessor function accepts the following arguments:
77

8-
- arr: input array
9-
- idx: element index
10-
- value: value to set
8+
- arr: input array.
9+
- idx: element index.
10+
- value: value to set.
1111

1212
If provided an unsupported `dtype`, the function returns a default accessor
1313
function for accessing elements in any indexed array-like object supporting

base/cunone-by-right/docs/repl.txt

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
12
{{alias}}( x, predicate[, thisArg] )
23
Cumulatively tests whether no array element in a provided array passes a
34
test implemented by a predicate function, while iterating from
45
right-to-left.
56

67
The predicate function is provided three arguments:
78

8-
- `value`: current array element.
9-
- `index`: current array element index.
10-
- `arr`: the input array.
9+
- value: current array element.
10+
- index: current array element index.
11+
- arr: the input array.
1112

1213
Parameters
1314
----------
@@ -40,9 +41,9 @@
4041

4142
The predicate function is provided three arguments:
4243

43-
- `value`: current array element.
44-
- `index`: current array element index.
45-
- `arr`: the input array.
44+
- value: current array element.
45+
- index: current array element index.
46+
- arr: the input array.
4647

4748
Parameters
4849
----------

base/cunone-by/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
The predicate function is provided three arguments:
77

8-
- `value`: current array element.
9-
- `index`: current array element index.
10-
- `arr`: the input array.
8+
- value: current array element.
9+
- index: current array element index.
10+
- arr: the input array.
1111

1212
Parameters
1313
----------

base/cusome-by-right/docs/repl.txt

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1+
12
{{alias}}( x, n, predicate[, thisArg] )
2-
Cumulatively test whether at least `n` elements in a provided array pass a
3+
Cumulatively tests whether at least `n` elements in a provided array pass a
34
test implemented by a predicate function, while iterating from
45
right-to-left.
56

67
The predicate function is provided three arguments:
78

8-
- `value`: current array element.
9-
- `index`: current array element index.
10-
- `arr`: the input array.
9+
- value: current array element.
10+
- index: current array element index.
11+
- arr: the input array.
1112

1213
Parameters
1314
----------
@@ -43,9 +44,9 @@
4344

4445
The predicate function is provided three arguments:
4546

46-
- `value`: current array element.
47-
- `index`: current array element index.
48-
- `arr`: the input array.
47+
- value: current array element.
48+
- index: current array element index.
49+
- arr: the input array.
4950

5051
Parameters
5152
----------

base/getter/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
An accessor function accepts the following arguments:
77

8-
- arr: input array
9-
- idx: element index
8+
- arr: input array.
9+
- idx: element index.
1010

1111
If provided an unsupported `dtype`, the function returns a default accessor
1212
function for accessing elements from any indexed array-like object.

base/resolve-getter/docs/repl.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55

66
An accessor function accepts the following arguments:
77

8-
- arr: input array
9-
- idx: element index
8+
- arr: input array.
9+
- idx: element index.
1010

1111
If provided an array-like object having an unsupported data type, the
1212
function returns a default accessor function for accessing elements from

base/resolve-setter/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
An accessor function accepts the following arguments:
66

7-
- arr: input array
8-
- idx: element index
9-
- value: value to set
7+
- arr: input array.
8+
- idx: element index.
9+
- value: value to set.
1010

1111
If provided an array-like object having an unsupported data type, the
1212
function returns a default accessor function for accessing elements in any

base/setter/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
An accessor function accepts the following arguments:
77

8-
- arr: input array
9-
- idx: element index
10-
- value: value to set
8+
- arr: input array.
9+
- idx: element index.
10+
- value: value to set.
1111

1212
If provided an unsupported `dtype`, the function returns a default accessor
1313
function for accessing elements in any indexed array-like object.

0 commit comments

Comments
 (0)