Skip to content

Commit 664f49d

Browse files
committed
Replace Rust generators references with coroutines
See also: - rust-lang/rust#116958: rust-lang/rust#116958
1 parent a0fe7a5 commit 664f49d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/linq/index.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -391,7 +391,7 @@ _iterator method_. The return type of an iterator method can be an
391391
`IEnumerable<T>` or an `IEnumerator<T>`. The compiler then converts the body
392392
of the method into a concrete implementation of the return type, instead of
393393
the developer having to write a full-blown class each time.
394-
_[Generators][generators.rs]_, as they're called in Rust, are still considered
394+
_[Coroutines][coroutines.rs]_, as they're called in Rust, are still considered
395395
an unstable feature at the time of this writing.
396396

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

0 commit comments

Comments
 (0)