Skip to content

Commit d72915f

Browse files
committed
Fix typo thing->thin referring to pointer
1 parent 61eff8f commit d72915f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

core/src/ptr/const_ptr.rs

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

core/src/ptr/mut_ptr.rs

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

0 commit comments

Comments
 (0)