Fix docs typo
Some checks failed
test / test (push) Has been cancelled

This commit is contained in:
Lily Rose 2025-08-09 19:04:47 +10:00
parent 08e473cf5d
commit a387c0a8f7

View file

@ -5,7 +5,7 @@ type Action(element) {
Continue(element, fn() -> Action(element)) Continue(element, fn() -> Action(element))
} }
/// An yielder is a lazily evaluated infinite sequence of elements. /// A yielder is a lazily evaluated infinite sequence of elements.
/// ///
/// As a lazy data structure no work is done when a yielder is filtered, /// As a lazy data structure no work is done when a yielder is filtered,
/// mapped, etc, instead a new yielder is returned with these transformations /// mapped, etc, instead a new yielder is returned with these transformations