We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2db0e0d commit bcc55e5Copy full SHA for bcc55e5
src/libcore/pin.rs
@@ -47,7 +47,7 @@
47
//!
48
//! However, these restrictions are usually not necessary. Many types are always freely
49
//! movable, even when pinned, because they do not rely on having a stable address.
50
-//! This includes all the basic types (`bool`, `i32` and friends, references)
+//! This includes all the basic types (like `bool`, `i32`, references)
51
//! as well as types consisting solely of these types.
52
//! Types that do not care about pinning implement the [`Unpin`] auto-trait, which
53
//! cancels the effect of [`Pin<P>`]. For `T: Unpin`, `Pin<Box<T>>` and `Box<T>` function
0 commit comments