We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84a0e80 commit f838355Copy full SHA for f838355
core/src/pin.rs
@@ -1059,7 +1059,7 @@ impl<P, U> DispatchFromDyn<Pin<U>> for Pin<P> where P: DispatchFromDyn<U> {}
1059
/// 8 | let x: Pin<&mut Foo> = {
1060
/// | - borrow later stored here
1061
/// 9 | let x: Pin<&mut Foo> = pin!(Foo { /* … */ });
1062
-/// | ^^^^^^^^^^^^^^^^^^^^^ creates a temporary which is freed while still in use
+/// | ^^^^^^^^^^^^^^^^^^^^^ creates a temporary value which is freed while still in use
1063
/// 10 | x
1064
/// 11 | }; // <- Foo is dropped
1065
/// | - temporary value is freed at the end of this statement
0 commit comments