From 71ad37da7dd75fe053342684394fd4c4f6647e14 Mon Sep 17 00:00:00 2001 From: binarycat Date: Thu, 31 Oct 2024 11:43:45 -0500 Subject: [PATCH] update offset_of! docs to reflect the stablization of nesting --- library/core/src/mem/mod.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/library/core/src/mem/mod.rs b/library/core/src/mem/mod.rs index 74b198c4fdd41..97560e2879c6c 100644 --- a/library/core/src/mem/mod.rs +++ b/library/core/src/mem/mod.rs @@ -1257,9 +1257,6 @@ impl SizedTypeProperties for T {} /// Enum variants may be traversed as if they were fields. Variants themselves do /// not have an offset. /// -/// However, on stable only a single field name is supported, which blocks the use of -/// enum support. -/// /// Visibility is respected - all types and fields must be visible to the call site: /// /// ```