about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorJonas Schievink <jonasschievink@gmail.com>2020-03-17 22:19:11 +0100
committerJonas Schievink <jonasschievink@gmail.com>2020-03-17 22:19:11 +0100
commitdb0126a7c251f4cca39ad4c50527e88c97190992 (patch)
tree647d7c929e897df58dd2b7fa03e0ff11a450ba01 /src
parent78274bc17c671655aaadba2096490fad59de2133 (diff)
downloadrust-db0126a7c251f4cca39ad4c50527e88c97190992.tar.gz
rust-db0126a7c251f4cca39ad4c50527e88c97190992.zip
Add issue reference
Diffstat (limited to 'src')
-rw-r--r--src/libcore/future/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/future/mod.rs b/src/libcore/future/mod.rs
index 6ee8479b347..8dfda7a4a32 100644
--- a/src/libcore/future/mod.rs
+++ b/src/libcore/future/mod.rs
@@ -17,7 +17,7 @@ pub use self::future::Future;
 /// 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.
 ///