From 1b6590c9f4104df7d168474edf3c0ab966b44108 Mon Sep 17 00:00:00 2001 From: Pietro Albini Date: Thu, 27 Aug 2020 10:58:34 +0200 Subject: [PATCH] forgot to remove a cfg(not(bootstrap)) --- library/std/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 1142b74ff0dc4..0797585e3df3f 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -247,7 +247,7 @@ #![feature(doc_cfg)] #![feature(doc_keyword)] #![feature(doc_masked)] -#![cfg_attr(not(bootstrap), feature(doc_spotlight))] +#![feature(doc_spotlight)] #![feature(dropck_eyepatch)] #![feature(duration_constants)] #![feature(exact_size_is_empty)]