diff options
| author | Erik Hofmayer <ehofmayer@outlook.de> | 2020-09-23 22:08:30 +0200 |
|---|---|---|
| committer | Erik Hofmayer <ehofmayer@outlook.de> | 2020-09-23 22:08:30 +0200 |
| commit | 764967a7e5cd260db94395614399e2638bee1eda (patch) | |
| tree | c5cde570ec5f1c762deb634d14cd778062307a60 | |
| parent | 138a2e5eaaafeee8b981045857f9df18ef4689d5 (diff) | |
| download | rust-764967a7e5cd260db94395614399e2638bee1eda.tar.gz rust-764967a7e5cd260db94395614399e2638bee1eda.zip | |
tidy
| -rw-r--r-- | compiler/rustc_ast/src/lib.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/compiler/rustc_ast/src/lib.rs b/compiler/rustc_ast/src/lib.rs index 765a21fd93e..6e47ff7d740 100644 --- a/compiler/rustc_ast/src/lib.rs +++ b/compiler/rustc_ast/src/lib.rs @@ -4,7 +4,10 @@ //! //! This API is completely unstable and subject to change. -#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/", test(attr(deny(warnings))))] +#![doc( + html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/", + test(attr(deny(warnings))) +)] #![feature(box_syntax)] #![feature(const_fn)] // For the `transmute` in `P::new` #![feature(const_fn_transmute)] |
