Skip to content

Commit a4ee02b

Browse files
committed
formatting
1 parent 6f48b60 commit a4ee02b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/pin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -492,7 +492,7 @@ impl<P: Deref<Target: Unpin>> Pin<P> {
492492
/// use std::pin::Pin;
493493
///
494494
/// let val: u8 = 5;
495-
/// // We can pin the value, since it doesn't care about being moved
495+
/// // We can pin the value, since it doesn't care about being moved
496496
/// let pinned: Pin<&u8> = Pin::new(&val);
497497
/// ```
498498
#[inline(always)]

0 commit comments

Comments
 (0)