Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace Rust generators references with coroutines #56

Merged
merged 1 commit into from
Feb 8, 2024
Merged
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
4 changes: 2 additions & 2 deletions src/linq/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ _iterator method_. The return type of an iterator method can be an
`IEnumerable<T>` or an `IEnumerator<T>`. The compiler then converts the body
of the method into a concrete implementation of the return type, instead of
the developer having to write a full-blown class each time.
_[Generators][generators.rs]_, as they're called in Rust, are still considered
_[Coroutines][coroutines.rs]_, as they're called in Rust, are still considered
an unstable feature at the time of this writing.

[generators.rs]: https://doc.rust-lang.org/stable/unstable-book/language-features/generators.html
[coroutines.rs]: https://doc.rust-lang.org/unstable-book/language-features/coroutines.html
Loading