Skip to content

Commit 23c83fa

Browse files
committed
Tidy up
1 parent d4adb3a commit 23c83fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

library/alloc/src/rc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1182,7 +1182,7 @@ impl<T: ?Sized> Rc<T> {
11821182
///
11831183
/// The raw pointer must have been previously returned by a call to
11841184
/// [`Rc<U>::into_raw`][into_raw] with the following requirements:
1185-
///
1185+
///
11861186
/// * If `U` is sized, it must have the same size and alignment as `T`. This
11871187
/// is trivially true if `U` is `T`.
11881188
/// * If `U` is unsized, its data pointer must have the same size and

library/alloc/src/sync.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1330,7 +1330,7 @@ impl<T: ?Sized> Arc<T> {
13301330
///
13311331
/// The raw pointer must have been previously returned by a call to
13321332
/// [`Arc<U>::into_raw`][into_raw] with the following requirements:
1333-
///
1333+
///
13341334
/// * If `U` is sized, it must have the same size and alignment as `T`. This
13351335
/// is trivially true if `U` is `T`.
13361336
/// * If `U` is unsized, its data pointer must have the same size and

0 commit comments

Comments
 (0)