File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -595,15 +595,15 @@ unsafe impl<T: ?Sized> Freeze for *mut T {}
595
595
unsafe impl < ' a , T : ?Sized > Freeze for & ' a T { }
596
596
unsafe impl < ' a , T : ?Sized > Freeze for & ' a mut T { }
597
597
598
- /// Types which can be moved out of a `Pin `.
598
+ /// Types which can be moved out of a `PinMut `.
599
599
///
600
- /// The `Unpin` trait is used to control the behavior of the [`Pin `] type. If a
600
+ /// The `Unpin` trait is used to control the behavior of the [`PinMut `] type. If a
601
601
/// type implements `Unpin`, it is safe to move a value of that type out of the
602
- /// `Pin ` pointer.
602
+ /// `PinMut ` pointer.
603
603
///
604
604
/// This trait is automatically implemented for almost every type.
605
605
///
606
- /// [`Pin `]: ../mem/struct.Pin .html
606
+ /// [`PinMut `]: ../mem/struct.PinMut .html
607
607
#[ unstable( feature = "pin" , issue = "49150" ) ]
608
608
pub unsafe auto trait Unpin { }
609
609
You can’t perform that action at this time.
0 commit comments