From 7879a59ac72e2c53659358bcaa3b7c32e06047f7 Mon Sep 17 00:00:00 2001 From: Matthias Geier Date: Sat, 24 Jul 2021 11:27:42 +0200 Subject: [PATCH] DOC: remove unnecessary feature crate attribute from example code --- library/core/src/mem/maybe_uninit.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/library/core/src/mem/maybe_uninit.rs b/library/core/src/mem/maybe_uninit.rs index 5122421ea8c85..d3ebc1cebb67b 100644 --- a/library/core/src/mem/maybe_uninit.rs +++ b/library/core/src/mem/maybe_uninit.rs @@ -461,7 +461,6 @@ impl MaybeUninit { /// With `write`, we can avoid the need to write through a raw pointer: /// /// ```rust - /// #![feature(maybe_uninit_extra)] /// use core::pin::Pin; /// use core::mem::MaybeUninit; ///