Skip to content

Commit

Permalink
Fix typo thing->thin referring to pointer
Browse files Browse the repository at this point in the history
  • Loading branch information
HeroicKatora committed Oct 13, 2024
1 parent 2bd0d07 commit c128b4c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion library/core/src/ptr/const_ptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
///
Expand Down
2 changes: 1 addition & 1 deletion library/core/src/ptr/mut_ptr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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
///
Expand Down

0 comments on commit c128b4c

Please sign in to comment.