Skip to content

Commit

Permalink
More cosmetic
Browse files Browse the repository at this point in the history
  • Loading branch information
Smoren committed Oct 23, 2023
1 parent 58a6a5e commit 6441256
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,11 +209,11 @@ Quick Reference

### Stream and AsyncStream Iteration Tools
#### Stream Sources
| Source | Description | Sync Code Snippet | Async Code Snippet |
|------------------------|----------------------------------|-----------------------|----------------------------|
| [`of`](#of) | Create a stream from an iterable | `Stream.of(iterable)` | `AsyncStream.of(iterable)` |
| [`ofEmpty`](#of-empty) | Create an empty stream | `Stream.ofEmpty()` | `AsyncStream.ofEmpty()` |
| [`ofCount`](#of-count) | Create an infinite count stream | `Stream.ofCount()` | `AsyncStream.ofCount()` |
| Source | Description | Sync Code Snippet | Async Code Snippet |
|------------------------|----------------------------------|-----------------------------------|----------------------------------------|
| [`of`](#of) | Create a stream from an iterable | `Stream.of(iterable)` | `AsyncStream.of(iterable)` |
| [`ofEmpty`](#of-empty) | Create an empty stream | `Stream.ofEmpty()` | `AsyncStream.ofEmpty()` |
| [`ofCount`](#of-count) | Create an infinite count stream | `Stream.ofCount([start], [step])` | `AsyncStream.ofCount([start], [step])` |

#### Stream Operations
| Operation | Description | Code Snippet |
Expand Down

0 comments on commit 6441256

Please sign in to comment.