about summary refs log tree commit diff
diff options
context:
space:
mode:
authorErik Hofmayer <ehofmayer@outlook.de>2020-09-23 22:08:30 +0200
committerErik Hofmayer <ehofmayer@outlook.de>2020-09-23 22:08:30 +0200
commit764967a7e5cd260db94395614399e2638bee1eda (patch)
treec5cde570ec5f1c762deb634d14cd778062307a60
parent138a2e5eaaafeee8b981045857f9df18ef4689d5 (diff)
downloadrust-764967a7e5cd260db94395614399e2638bee1eda.tar.gz
rust-764967a7e5cd260db94395614399e2638bee1eda.zip
tidy
-rw-r--r--compiler/rustc_ast/src/lib.rs5
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)]