diff options
| author | Michael Goulet <michael@errs.io> | 2022-05-05 19:34:23 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-05-05 19:34:23 -0700 |
| commit | ef949daf036b77795ee03c4ec470713ddd18ff07 (patch) | |
| tree | 98f6ba958de6566daab2bdbfe95e5940cfee07aa | |
| parent | 87ad928c1598116b104525f2efc29198e39e42c7 (diff) | |
| parent | 9b36a4783101c86a7b6597804e59dae076459653 (diff) | |
| download | rust-ef949daf036b77795ee03c4ec470713ddd18ff07.tar.gz rust-ef949daf036b77795ee03c4ec470713ddd18ff07.zip | |
Rollup merge of #96639 - adpaco-aws:fix-offset-from-typo, r=scottmcm
Fix typo in `offset_from` documentation Small fix for what I think is a typo in the `offset_from` documentation. Someone reading this may understand that the distance in bytes is obtained by dividing the distance by `mem::size_of::<T>()`, but here we just want to define "units of T" in terms of bytes (i.e., units of T == bytes / `mem::size_of::<T>()`).
| -rw-r--r-- | library/core/src/ptr/const_ptr.rs | 2 | ||||
| -rw-r--r-- | library/core/src/ptr/mut_ptr.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/ptr/const_ptr.rs b/library/core/src/ptr/const_ptr.rs index 7ef2e95542b..45964c3a444 100644 --- a/library/core/src/ptr/const_ptr.rs +++ b/library/core/src/ptr/const_ptr.rs @@ -518,7 +518,7 @@ impl<T: ?Sized> *const T { } /// Calculates the distance between two pointers. The returned value is in - /// units of T: the distance in bytes is divided by `mem::size_of::<T>()`. + /// units of T: the distance in bytes divided by `mem::size_of::<T>()`. /// /// This function is the inverse of [`offset`]. /// diff --git a/library/core/src/ptr/mut_ptr.rs b/library/core/src/ptr/mut_ptr.rs index 56f9c84f5af..ff5207c1a06 100644 --- a/library/core/src/ptr/mut_ptr.rs +++ b/library/core/src/ptr/mut_ptr.rs @@ -696,7 +696,7 @@ impl<T: ?Sized> *mut T { } /// Calculates the distance between two pointers. The returned value is in - /// units of T: the distance in bytes is divided by `mem::size_of::<T>()`. + /// units of T: the distance in bytes divided by `mem::size_of::<T>()`. /// /// This function is the inverse of [`offset`]. /// |
