Fix typo thing->thin referring to pointer

This commit is contained in:
Andreas Molzer 2024-10-13 02:35:09 +02:00
parent 2bd0d070ed
commit c128b4c433
2 changed files with 2 additions and 2 deletions

View File

@ -72,7 +72,7 @@ impl<T: ?Sized> *const T {
///
/// The resulting pointer will have provenance of `self`. This operation is semantically the
/// same as creating a new pointer with the data pointer value of `self` but the metadata of
/// `meta`, being fat or thing depending on the `meta` operand.
/// `meta`, being fat or thin depending on the `meta` operand.
///
/// # Examples
///

View File

@ -54,7 +54,7 @@ impl<T: ?Sized> *mut T {
///
/// The resulting pointer will have provenance of `self`. This operation is semantically the
/// same as creating a new pointer with the data pointer value of `self` but the metadata of
/// `meta`, being fat or thing depending on the `meta` operand.
/// `meta`, being fat or thin depending on the `meta` operand.
///
/// # Examples
///