Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into release/0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tginsberg committed Feb 28, 2025
2 parents 5cb86a4 + 98808db commit 363b2c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/gatherers4j/content/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ This library aims to provide a comprehensive and useful set of Gatherers (interm

* [Getting Started](/gatherers4j/start) - The quickstart guide will show you how to add Gatherers4j to your project.

* Gatherers are organied into five categories for easier seaching:
* Gatherers are organized into five categories for easier searching:
* [Sequence Operations](/gatherers4j/gatherers/sequence-operations/) - Reorder, combine, or manipulate the sequence of elements.

* [Filtering and Selection](/gatherers4j/gatherers/filtering-and-selection/) - Select or remove elements based on some criteria.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ Stream
// [1, 2, 2, 3]
```

#### Filter the stream such that it is decending or equal
#### Filter the stream such that it is descending or equal

```java
Stream
Expand Down
2 changes: 1 addition & 1 deletion docs/gatherers4j/content/gatherers/mathematical/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Functions performing calculations over the stream.
Major themes are:

* Moving and running product, sum, and simple average
* Runing population and sample standard deviation
* Running population and sample standard deviation
* Variations for working with `Stream<BigDecimal>` or mapping input elements to `BigDecimal`

{{< functiontable >}}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description: Creates a stream of `Pair<FIRST,SECOND>` objects whose values come
### Implementation Notes

This gatherer pairs elements from the input stream together with elements from some other source to the output stream. The default implementation assumes that
both input stream and argument source are of the same length. By default, the gatherer stops emitting elements when it exhusts either the source or argument. Additional methods to alter
both input stream and argument source are of the same length. By default, the gatherer stops emitting elements when it exhausts either the source or argument. Additional methods to alter
this behavior are available, see "Additional Methods" below.

**Signatures**
Expand Down

0 comments on commit 363b2c0

Please # to comment.