Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ An immutable lazy iterator with functional operations.
Readability counts, abstracting common operations helps reduce cognitive complexity when reading code.

#### Comparison
Take this imperative pipeline of operations, it iterates once over the :
Take this imperative pipeline of operations, it iterates once over the data, skipping the value if it fails one of the filter checks:

```python
>>> res = []
Expand Down
2 changes: 1 addition & 1 deletion src/danom/_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Stream(_BaseStream):
Readability counts, abstracting common operations helps reduce cognitive complexity when reading code.

#### Comparison
Take this imperative pipeline of operations, it iterates once over the :
Take this imperative pipeline of operations, it iterates once over the data, skipping the value if it fails one of the filter checks:

```python
>>> res = []
Expand Down