We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 39660c4 commit 55487e2Copy full SHA for 55487e2
library/core/src/primitive_docs.rs
@@ -1399,9 +1399,8 @@ mod prim_usize {}
1399
/// * `t` is aligned to `align_of_val(t)`
1400
/// * `t` is dereferenceable for `size_of_val(t)` many bytes
1401
///
1402
-/// Being "dereferenceable" for N bytes means that the memory range beginning
1403
-/// at the address `t` points to and ending N bytes later is all contained within a
1404
-/// single [allocated object].
+/// If `t` points at address `a`, being "dereferenceable" for N bytes means that the memory range
+/// `[a, a + N)` is all contained within a single [allocated object].
1405
1406
/// [allocated object]: ptr#allocated-object
1407
#[stable(feature = "rust1", since = "1.0.0")]
0 commit comments