diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2019-11-13 22:09:13 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-11-13 22:09:13 +0900 |
| commit | 6eea5001b56176ab3363f24e1fad285c15d127a9 (patch) | |
| tree | 73b74ffc8baebdeb09a34a6daae7a2ff2e067159 /src/libstd/sys_common | |
| parent | e365d5aac614acd487a6cbdb23e9574948e6574a (diff) | |
| parent | 0282c27781b2f7501f4385ef22da82acc179c00e (diff) | |
| download | rust-6eea5001b56176ab3363f24e1fad285c15d127a9.tar.gz rust-6eea5001b56176ab3363f24e1fad285c15d127a9.zip | |
Rollup merge of #66166 - GuillaumeGomez:rename-rustdoc-to-doc, r=QuietMisdreavus
rename cfg(rustdoc) into cfg(doc) Needed by https://github.com/rust-lang/rust/pull/61351 r? @QuietMisdreavus
Diffstat (limited to 'src/libstd/sys_common')
| -rw-r--r-- | src/libstd/sys_common/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys_common/mod.rs b/src/libstd/sys_common/mod.rs index 7a0bcd03d75..8912aed9255 100644 --- a/src/libstd/sys_common/mod.rs +++ b/src/libstd/sys_common/mod.rs @@ -45,7 +45,7 @@ pub mod backtrace; pub mod condvar; pub mod io; pub mod mutex; -#[cfg(any(rustdoc, // see `mod os`, docs are generated for multiple platforms +#[cfg(any(doc, // see `mod os`, docs are generated for multiple platforms unix, target_os = "redox", target_os = "cloudabi", |
