Skip to content

Commit a1da8a8

Browse files
Reword prelude for AsyncFn stabilization
1 parent 7696a99 commit a1da8a8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Diff for: library/std/src/prelude/mod.rs

+3-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@
3333
//!
3434
//! * <code>[std::marker]::{[Copy], [Send], [Sized], [Sync], [Unpin]}</code>,
3535
//! marker traits that indicate fundamental properties of types.
36-
//! * <code>[std::ops]::{[Drop], [Fn], [FnMut], [FnOnce]}</code>, various
37-
//! operations for both destructors and overloading `()`.
36+
//! * <code>[std::ops]::{[Fn], [FnMut], [FnOnce]}</code>, and their analogous
37+
//! async traits, <code>[std::ops]::{[AsyncFn], [AsyncFnMut], [AsyncFnOnce]}</code>.
38+
//! * <code>[std::ops]::[Drop]</code>, for implementing destructors.
3839
//! * <code>[std::mem]::[drop]</code>, a convenience function for explicitly
3940
//! dropping a value.
4041
//! * <code>[std::mem]::{[size_of], [size_of_val]}</code>, to get the size of

0 commit comments

Comments
 (0)