Skip to content

Commit 0dc76ab

Browse files
committed
Auto-generated commit
1 parent 018e902 commit 0dc76ab

File tree

21 files changed

+54
-53
lines changed

21 files changed

+54
-53
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-17)
7+
## Unreleased (2024-09-21)
88

99
<section class="packages">
1010

@@ -32,6 +32,7 @@ A total of 1 person contributed to this release. Thank you to this contributor:
3232

3333
<details>
3434

35+
- [`6e9f42e`](https://github.com/stdlib-js/stdlib/commit/6e9f42e4c912485d9896eaa16c88b70fd3688e97) - **docs:** harmonize list formatting in repl.txt and ensure starting newline _(by Philipp Burckhardt)_
3536
- [`ed44fee`](https://github.com/stdlib-js/stdlib/commit/ed44feecb9eaa5e0849d1a533e5415624d0aa338) - **style:** use imperative in package.json description and end with period _(by Philipp Burckhardt)_
3637
- [`cadb613`](https://github.com/stdlib-js/stdlib/commit/cadb6131d6ce50338d11757e88e8a910a0367983) - **chore:** update argument documentation styling _(by Philipp Burckhardt)_
3738

any-by/docs/repl.txt

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

66
The predicate function is provided two arguments:
77

8-
- value: iterated value
9-
- index: iteration index
8+
- value: iterated value.
9+
- index: iteration index.
1010

1111
The function immediately returns upon encountering a truthy return value.
1212

cunone-by/docs/repl.txt

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

99
The predicate function is provided two arguments:
1010

11-
- value: iterated value
12-
- index: iteration index
11+
- value: iterated value.
12+
- index: iteration index.
1313

1414
A predicate function is invoked for each iterated value until the first
1515
truthy predicate function return value. Upon encountering the first truthy

dedupe-by/docs/repl.txt

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

66
The provided function is provided five arguments:
77

8-
- curr: current source iterated value
9-
- sprev: previous source iterated value
10-
- dprev: previous downstream iterated value
11-
- index: source iteration index (zero-based)
12-
- acc: previous resolved value
8+
- curr: current source iterated value.
9+
- sprev: previous source iterated value.
10+
- dprev: previous downstream iterated value.
11+
- index: source iteration index (zero-based).
12+
- acc: previous resolved value.
1313

1414
If an environment supports Symbol.iterator and a provided iterator is
1515
iterable, the returned iterator is iterable.

do-until-each/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( iterator, predicate, fcn[, thisArg] )
3-
Returns an iterator which invokes a function for each iterated value before
3+
Returns an iterator which invokes a function for each iterated value before
44
returning the iterated value until either a predicate function returns true
55
or the iterator has iterated over all values.
66

@@ -9,8 +9,8 @@
99

1010
When invoked, both input functions are provided two arguments:
1111

12-
- value: iterated value
13-
- index: iteration index (zero-based)
12+
- value: iterated value.
13+
- index: iteration index (zero-based).
1414

1515
If an environment supports Symbol.iterator, the returned iterator is
1616
iterable.

do-while-each/docs/repl.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11

22
{{alias}}( iterator, predicate, fcn[, thisArg] )
3-
Returns an iterator which invokes a function for each iterated value before
3+
Returns an iterator which invokes a function for each iterated value before
44
returning the iterated value until either a predicate function returns false
55
or the iterator has iterated over all values.
66

@@ -9,8 +9,8 @@
99

1010
When invoked, both input functions are provided two arguments:
1111

12-
- value: iterated value
13-
- index: iteration index (zero-based)
12+
- value: iterated value.
13+
- index: iteration index (zero-based).
1414

1515
If an environment supports Symbol.iterator, the returned iterator is
1616
iterable.

every-by/docs/repl.txt

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

66
The predicate function is provided two arguments:
77

8-
- value: iterated value
9-
- index: iteration index
8+
- value: iterated value.
9+
- index: iteration index.
1010

1111
The function immediately returns upon encountering a falsy return value.
1212

filter-map/docs/repl.txt

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

66
When invoked, the callback function is provided two arguments:
77

8-
- value: iterated value
9-
- index: iteration index (zero-based)
8+
- value: iterated value.
9+
- index: iteration index (zero-based).
1010

1111
If the callback returns `undefined`, the iterator invokes the function for
1212
the next value of the provided iterator; otherwise, the iterator returns

filter/docs/repl.txt

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

66
When invoked, the predicate function is provided two arguments:
77

8-
- value: iterated value
9-
- index: iteration index (zero-based)
8+
- value: iterated value.
9+
- index: iteration index (zero-based).
1010

1111
If an environment supports Symbol.iterator and a provided iterator is
1212
iterable, the returned iterator is iterable.

for-each/docs/repl.txt

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

66
When invoked, the input function is provided two arguments:
77

8-
- value: iterated value
9-
- index: iteration index (zero-based)
8+
- value: iterated value.
9+
- index: iteration index (zero-based).
1010

1111
If an environment supports Symbol.iterator, the returned iterator is
1212
iterable.

0 commit comments

Comments
 (0)