diff --git a/README.md b/README.md index 893c70c..1dce846 100644 --- a/README.md +++ b/README.md @@ -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 = [] diff --git a/src/danom/_stream.py b/src/danom/_stream.py index 2e7aed0..89963b4 100644 --- a/src/danom/_stream.py +++ b/src/danom/_stream.py @@ -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 = []