@@ -465,8 +465,8 @@ impl<T: ?Sized> *const T {
465465 /// If any of the following conditions are violated, the result is Undefined
466466 /// Behavior:
467467 ///
468- /// * If the computed offset is non-zero, then both the starting and resulting pointer must be
469- /// either in bounds or one byte past the end of the same [allocated object].
468+ /// * If the computed offset, **in bytes**, is non-zero, then both the starting and resulting
469+ /// pointer must be either in bounds or at the end of the same [allocated object].
470470 /// (If it is zero, then the function is always well-defined.)
471471 ///
472472 /// * The computed offset, **in bytes**, cannot overflow an `isize`.
@@ -952,8 +952,8 @@ impl<T: ?Sized> *const T {
952952 /// If any of the following conditions are violated, the result is Undefined
953953 /// Behavior:
954954 ///
955- /// * If the computed offset is non-zero, then both the starting and resulting pointer must be
956- /// either in bounds or one byte past the end of the same [allocated object].
955+ /// * If the computed offset, **in bytes**, is non-zero, then both the starting and resulting
956+ /// pointer must be either in bounds or at the end of the same [allocated object].
957957 /// (If it is zero, then the function is always well-defined.)
958958 ///
959959 /// * The computed offset, **in bytes**, cannot overflow an `isize`.
@@ -1037,8 +1037,8 @@ impl<T: ?Sized> *const T {
10371037 /// If any of the following conditions are violated, the result is Undefined
10381038 /// Behavior:
10391039 ///
1040- /// * If the computed offset is non-zero, then both the starting and resulting pointer must be
1041- /// either in bounds or one byte past the end of the same [allocated object].
1040+ /// * If the computed offset, **in bytes**, is non-zero, then both the starting and resulting
1041+ /// pointer must be either in bounds or at the end of the same [allocated object].
10421042 /// (If it is zero, then the function is always well-defined.)
10431043 ///
10441044 /// * The computed offset cannot exceed `isize::MAX` **bytes**.
0 commit comments