about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2019-02-07 14:28:41 +0100
committerGitHub <noreply@github.com>2019-02-07 14:28:41 +0100
commit761caa2334bd7f3668819ee8218569f3098c4a36 (patch)
tree460c196f56d88441245641462d833b4ca6a1100d /src/libstd
parentda8da5e061a72b73eb1499d46f5fde36575e610a (diff)
parent8b886e07f52d1523421a3cf0c484a4898d13b432 (diff)
downloadrust-761caa2334bd7f3668819ee8218569f3098c4a36.tar.gz
rust-761caa2334bd7f3668819ee8218569f3098c4a36.zip
Rollup merge of #58185 - GuillaumeGomez:images-url, r=SimonSapin
Remove images' url to make it work even without internet connection

Needed for local std docs mainly.

cc @SimonSapin

r? @QuietMisdreavus
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/lib.rs4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs
index 244caf28ec7..8ecba3ecd68 100644
--- a/src/libstd/lib.rs
+++ b/src/libstd/lib.rs
@@ -196,9 +196,7 @@
 //! [primitive types]: ../book/ch03-02-data-types.html
 
 #![stable(feature = "rust1", since = "1.0.0")]
-#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
-       html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
-       html_root_url = "https://doc.rust-lang.org/nightly/",
+#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
        html_playground_url = "https://play.rust-lang.org/",
        issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
        test(no_crate_inject, attr(deny(warnings))),