Skip to content

Commit db0126a

Browse files
Add issue reference
1 parent 78274bc commit db0126a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libcore/future/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub use self::future::Future;
1717
/// This type is needed because:
1818
///
1919
/// a) Generators cannot implement `for<'a, 'b> Generator<&'a mut Context<'b>>`, so we need to pass
20-
/// a raw pointer.
20+
/// a raw pointer (see https://github.com/rust-lang/rust/issues/68923).
2121
/// b) Raw pointers and `NonNull` aren't `Send` or `Sync`, so that would make every single future
2222
/// non-Send/Sync as well, and we don't want that.
2323
///

0 commit comments

Comments
 (0)