Skip to content

Commit ae1a15a

Browse files
committed
Use turbofish for size_of<T> and align_of<T> in docs
1 parent a8a4fbc commit ae1a15a

File tree

5 files changed

+13
-13
lines changed

5 files changed

+13
-13
lines changed

compiler/rustc_data_structures/src/aligned.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ pub const fn align_of<T: ?Sized + Aligned>() -> Alignment {
1313
/// # Safety
1414
///
1515
/// `Self::ALIGN` must be equal to the alignment of `Self`. For sized types it
16-
/// is [`align_of<Self>()`], for unsized types it depends on the type, for
16+
/// is [`align_of::<Self>()`], for unsized types it depends on the type, for
1717
/// example `[T]` has alignment of `T`.
1818
///
19-
/// [`align_of<Self>()`]: align_of
19+
/// [`align_of::<Self>()`]: align_of
2020
pub unsafe trait Aligned {
2121
/// Alignment of `Self`.
2222
const ALIGN: Alignment;

library/core/src/ptr/const_ptr.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1313,7 +1313,7 @@ impl<T: ?Sized> *const T {
13131313
unsafe { read_unaligned(self) }
13141314
}
13151315

1316-
/// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
1316+
/// Copies `count * size_of::<T>()` bytes from `self` to `dest`. The source
13171317
/// and destination may overlap.
13181318
///
13191319
/// NOTE: this has the *same* argument order as [`ptr::copy`].
@@ -1333,7 +1333,7 @@ impl<T: ?Sized> *const T {
13331333
unsafe { copy(self, dest, count) }
13341334
}
13351335

1336-
/// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
1336+
/// Copies `count * size_of::<T>()` bytes from `self` to `dest`. The source
13371337
/// and destination may *not* overlap.
13381338
///
13391339
/// NOTE: this has the *same* argument order as [`ptr::copy_nonoverlapping`].

library/core/src/ptr/mut_ptr.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -1397,7 +1397,7 @@ impl<T: ?Sized> *mut T {
13971397
unsafe { read_unaligned(self) }
13981398
}
13991399

1400-
/// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
1400+
/// Copies `count * size_of::<T>()` bytes from `self` to `dest`. The source
14011401
/// and destination may overlap.
14021402
///
14031403
/// NOTE: this has the *same* argument order as [`ptr::copy`].
@@ -1417,7 +1417,7 @@ impl<T: ?Sized> *mut T {
14171417
unsafe { copy(self, dest, count) }
14181418
}
14191419

1420-
/// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
1420+
/// Copies `count * size_of::<T>()` bytes from `self` to `dest`. The source
14211421
/// and destination may *not* overlap.
14221422
///
14231423
/// NOTE: this has the *same* argument order as [`ptr::copy_nonoverlapping`].
@@ -1437,7 +1437,7 @@ impl<T: ?Sized> *mut T {
14371437
unsafe { copy_nonoverlapping(self, dest, count) }
14381438
}
14391439

1440-
/// Copies `count * size_of<T>` bytes from `src` to `self`. The source
1440+
/// Copies `count * size_of::<T>()` bytes from `src` to `self`. The source
14411441
/// and destination may overlap.
14421442
///
14431443
/// NOTE: this has the *opposite* argument order of [`ptr::copy`].
@@ -1457,7 +1457,7 @@ impl<T: ?Sized> *mut T {
14571457
unsafe { copy(src, self, count) }
14581458
}
14591459

1460-
/// Copies `count * size_of<T>` bytes from `src` to `self`. The source
1460+
/// Copies `count * size_of::<T>()` bytes from `src` to `self`. The source
14611461
/// and destination may *not* overlap.
14621462
///
14631463
/// NOTE: this has the *opposite* argument order of [`ptr::copy_nonoverlapping`].

library/core/src/ptr/non_null.rs

+4-4
Original file line numberDiff line numberDiff line change
@@ -988,7 +988,7 @@ impl<T: ?Sized> NonNull<T> {
988988
unsafe { ptr::read_unaligned(self.as_ptr()) }
989989
}
990990

991-
/// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
991+
/// Copies `count * size_of::<T>()` bytes from `self` to `dest`. The source
992992
/// and destination may overlap.
993993
///
994994
/// NOTE: this has the *same* argument order as [`ptr::copy`].
@@ -1008,7 +1008,7 @@ impl<T: ?Sized> NonNull<T> {
10081008
unsafe { ptr::copy(self.as_ptr(), dest.as_ptr(), count) }
10091009
}
10101010

1011-
/// Copies `count * size_of<T>` bytes from `self` to `dest`. The source
1011+
/// Copies `count * size_of::<T>()` bytes from `self` to `dest`. The source
10121012
/// and destination may *not* overlap.
10131013
///
10141014
/// NOTE: this has the *same* argument order as [`ptr::copy_nonoverlapping`].
@@ -1028,7 +1028,7 @@ impl<T: ?Sized> NonNull<T> {
10281028
unsafe { ptr::copy_nonoverlapping(self.as_ptr(), dest.as_ptr(), count) }
10291029
}
10301030

1031-
/// Copies `count * size_of<T>` bytes from `src` to `self`. The source
1031+
/// Copies `count * size_of::<T>()` bytes from `src` to `self`. The source
10321032
/// and destination may overlap.
10331033
///
10341034
/// NOTE: this has the *opposite* argument order of [`ptr::copy`].
@@ -1048,7 +1048,7 @@ impl<T: ?Sized> NonNull<T> {
10481048
unsafe { ptr::copy(src.as_ptr(), self.as_ptr(), count) }
10491049
}
10501050

1051-
/// Copies `count * size_of<T>` bytes from `src` to `self`. The source
1051+
/// Copies `count * size_of::<T>()` bytes from `src` to `self`. The source
10521052
/// and destination may *not* overlap.
10531053
///
10541054
/// NOTE: this has the *opposite* argument order of [`ptr::copy_nonoverlapping`].

src/tools/miri/tests/pass-dep/libc/libc-affinity.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ fn set_small_cpu_mask() {
115115
assert_eq!(err, -1);
116116
assert_eq!(std::io::Error::last_os_error().kind(), std::io::ErrorKind::InvalidInput);
117117

118-
// on LE systems, any other number of bytes (at least up to `size_of<cpu_set_t>()`) will work.
118+
// on LE systems, any other number of bytes (at least up to `size_of::<cpu_set_t>()`) will work.
119119
// on BE systems the CPUs 0..8 are stored in the right-most byte of the first chunk. If that
120120
// byte is not included, no valid CPUs are configured. We skip those cases.
121121
let cpu_zero_included_length =

0 commit comments

Comments
 (0)