diff options
| author | Pietro Albini <pietro@pietroalbini.org> | 2018-08-30 20:15:47 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-08-30 20:15:47 +0200 |
| commit | 78d5509625bf3f96e5d89b74eae14584deb9915d (patch) | |
| tree | a7d9916dcacf36e1e5196d33ae3a71a1f4c9c917 /src/libstd/os | |
| parent | 07fcb0168e208a2448ba82d65a626c5d0f265638 (diff) | |
| parent | e477a13d63c2139f39c192c8e22dcfd0810f68e4 (diff) | |
| download | rust-78d5509625bf3f96e5d89b74eae14584deb9915d.tar.gz rust-78d5509625bf3f96e5d89b74eae14584deb9915d.zip | |
Rollup merge of #53786 - frewsxcv:frewsxcv-bad-style, r=Manishearth
Replace usages of 'bad_style' with 'nonstandard_style'. `bad_style` is being deprecated in favor of `nonstandard_style`: - https://github.com/rust-lang/rust/issues/41646
Diffstat (limited to 'src/libstd/os')
| -rw-r--r-- | src/libstd/os/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/os/mod.rs b/src/libstd/os/mod.rs index c384ec9168a..6d8298f01cd 100644 --- a/src/libstd/os/mod.rs +++ b/src/libstd/os/mod.rs @@ -11,7 +11,7 @@ //! OS-specific functionality. #![stable(feature = "os", since = "1.0.0")] -#![allow(missing_docs, bad_style, missing_debug_implementations)] +#![allow(missing_docs, nonstandard_style, missing_debug_implementations)] cfg_if! { if #[cfg(dox)] { |
