]> git.lizzy.rs Git - rust.git/commitdiff
Add issue reference
authorJonas Schievink <jonasschievink@gmail.com>
Tue, 17 Mar 2020 21:19:11 +0000 (22:19 +0100)
committerJonas Schievink <jonasschievink@gmail.com>
Tue, 17 Mar 2020 21:19:11 +0000 (22:19 +0100)
src/libcore/future/mod.rs

index 6ee8479b34780000c032eebc5839ca0aa367376c..8dfda7a4a32366447668ff4b6ed79662457be66e 100644 (file)
@@ -17,7 +17,7 @@
 /// This type is needed because:
 ///
 /// a) Generators cannot implement `for<'a, 'b> Generator<&'a mut Context<'b>>`, so we need to pass
-///    a raw pointer.
+///    a raw pointer (see https://github.com/rust-lang/rust/issues/68923).
 /// b) Raw pointers and `NonNull` aren't `Send` or `Sync`, so that would make every single future
 ///    non-Send/Sync as well, and we don't want that.
 ///