diff options
| -rw-r--r-- | library/core/src/ops/generator.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/library/core/src/ops/generator.rs b/library/core/src/ops/generator.rs index 7c3b2a644e8..b651b7b233e 100644 --- a/library/core/src/ops/generator.rs +++ b/library/core/src/ops/generator.rs @@ -61,9 +61,10 @@ pub enum GeneratorState<Y, R> { /// } /// ``` /// -/// More documentation of generators can be found in the unstable book. +/// More documentation of generators can be found in the [unstable book]. /// /// [RFC 2033]: https://github.com/rust-lang/rfcs/pull/2033 +/// [unstable book]: ../../unstable-book/language-features/generators.html #[lang = "generator"] #[unstable(feature = "generator_trait", issue = "43122")] #[fundamental] |
