about summary refs log tree commit diff
path: root/library/core
diff options
context:
space:
mode:
authorGeorge Bateman <george.bateman16@gmail.com>2023-10-31 23:41:40 +0000
committerGeorge Bateman <george.bateman16@gmail.com>2023-10-31 23:41:40 +0000
commite742f809f68d571a28b7c9153366194e47714b65 (patch)
treeb83bb9802bbaa73a5d398c91dc28d8b3093ab015 /library/core
parent9d6ce61376ef77bae3268b1b69ec6e7f3b815923 (diff)
downloadrust-e742f809f68d571a28b7c9153366194e47714b65.tar.gz
rust-e742f809f68d571a28b7c9153366194e47714b65.zip
Update based on wesleywiser review
Diffstat (limited to 'library/core')
-rw-r--r--library/core/src/mem/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/core/src/mem/mod.rs b/library/core/src/mem/mod.rs
index b5b0e5882da..8792134cdc8 100644
--- a/library/core/src/mem/mod.rs
+++ b/library/core/src/mem/mod.rs
@@ -1299,8 +1299,8 @@ impl<T> SizedTypeProperties for T {}
 /// Enum variants may be traversed as if they were fields. Variants themselves do
 /// not have an offset.
 ///
-/// Note that type layout is, in general, [platform-specific, and subject to
-/// change](https://doc.rust-lang.org/reference/type-layout.html).
+/// Note that type layout is, in general, [subject to change and
+/// platform-specific](https://doc.rust-lang.org/reference/type-layout.html).
 ///
 /// # Examples
 ///