Skip to content

Commit 8b97720

Browse files
committed
doc: Replace doc_auto_cfg by doc_cfg
doc_auto_cfg has been merged into doc_cfg: error[E0557]: feature has been removed --> src/lib.rs:2:40 | 2 | #![cfg_attr(all(doc, nightly), feature(doc_auto_cfg))] // expect nightly for doc | ^^^^^^^^^^^^ feature has been removed | = note: removed in CURRENT_RUSTC_VERSION; see <rust-lang/rust#138907> for more information = note: merged into `doc_cfg` Signed-off-by: Hanna Czenczek <hreitz@redhat.com> (cherry picked from commit 273e6a2) Signed-off-by: Hanna Czenczek <hreitz@redhat.com>
1 parent 7eb699e commit 8b97720

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
// #![feature(async_drop)] -- enable with async-drop
2-
#![cfg_attr(all(doc, nightly), feature(doc_auto_cfg))] // expect nightly for doc
2+
#![cfg_attr(all(doc, nightly), feature(doc_cfg))] // expect nightly for doc
33
#![warn(missing_docs)]
44
#![warn(clippy::missing_docs_in_private_items)]
55

0 commit comments

Comments
 (0)