Skip to content

Commit 40eb369

Browse files
authored
Rename doc_auto_cfg to doc_cfg (#11808)
1 parent 7a95dd3 commit 40eb369

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cranelift/codegen/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! Cranelift code generation library.
22
#![deny(missing_docs)]
33
// Display feature requirements in the documentation when building on docs.rs
4-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
4+
#![cfg_attr(docsrs, feature(doc_cfg))]
55
#![no_std]
66
// Various bits and pieces of this crate might only be used for one platform or
77
// another, but it's not really too useful to learn about that all the time. On

crates/wasi/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
1+
#![cfg_attr(docsrs, feature(doc_cfg))]
22

33
//! # Wasmtime's WASI Implementation
44
//!

crates/wasmtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,7 +279,7 @@
279279
#![deny(missing_docs)]
280280
#![doc(test(attr(deny(warnings))))]
281281
#![doc(test(attr(allow(dead_code, unused_variables, unused_mut))))]
282-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
282+
#![cfg_attr(docsrs, feature(doc_cfg))]
283283
// NB: this list is currently being burned down to remove all features listed
284284
// here to get warnings in all configurations of Wasmtime.
285285
#![cfg_attr(

pulley/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! The pulley bytecode for fast interpreters.
22
3-
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
3+
#![cfg_attr(docsrs, feature(doc_cfg))]
44
#![cfg_attr(pulley_tail_calls, feature(explicit_tail_calls))]
55
#![cfg_attr(pulley_tail_calls, allow(incomplete_features, unstable_features))]
66
#![deny(missing_docs)]

0 commit comments

Comments
 (0)