@@ -220,7 +220,7 @@ pub fn size_of_val<T: ?Sized>(val: &T) -> usize {
220
220
221
221
/// Returns the [ABI]-required minimum alignment of a type.
222
222
///
223
- /// Every reference to a value of type `T` must be a multiple of this number.
223
+ /// Every reference to a value of the type `T` must be a multiple of this number.
224
224
///
225
225
/// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
226
226
///
@@ -243,7 +243,7 @@ pub fn min_align_of<T>() -> usize {
243
243
244
244
/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to.
245
245
///
246
- /// Every reference to a value of type `T` must be a multiple of this number.
246
+ /// Every reference to a value of the type `T` must be a multiple of this number.
247
247
///
248
248
/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
249
249
///
@@ -264,7 +264,7 @@ pub fn min_align_of_val<T: ?Sized>(val: &T) -> usize {
264
264
265
265
/// Returns the [ABI]-required minimum alignment of a type.
266
266
///
267
- /// Every reference to a value of type `T` must be a multiple of this number.
267
+ /// Every reference to a value of the type `T` must be a multiple of this number.
268
268
///
269
269
/// This is the alignment used for struct fields. It may be smaller than the preferred alignment.
270
270
///
@@ -285,7 +285,7 @@ pub fn align_of<T>() -> usize {
285
285
286
286
/// Returns the [ABI]-required minimum alignment of the type of the value that `val` points to.
287
287
///
288
- /// Every reference to a value of type `T` must be a multiple of this number.
288
+ /// Every reference to a value of the type `T` must be a multiple of this number.
289
289
///
290
290
/// [ABI]: https://en.wikipedia.org/wiki/Application_binary_interface
291
291
///
0 commit comments