Skip to content

Commit 8b886e0

Browse files
Remove images' url to make it work even without internet connection
1 parent 626e74d commit 8b886e0

File tree

37 files changed

+37
-114
lines changed

37 files changed

+37
-114
lines changed

src/liballoc/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@
5555
reason = "this library is unlikely to be stabilized in its current \
5656
form or name",
5757
issue = "27783")]
58-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
59-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
60-
html_root_url = "https://doc.rust-lang.org/nightly/",
58+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
6159
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
6260
test(no_crate_inject, attr(allow(unused_variables), deny(warnings))))]
6361
#![no_std]

src/libarena/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@
88
//! This crate implements `TypedArena`, a simple arena that can only hold
99
//! objects of a single type.
1010
11-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
12-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
13-
html_root_url = "https://doc.rust-lang.org/nightly/",
11+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
1412
test(no_crate_inject, attr(deny(warnings))))]
1513

1614
#![feature(alloc)]

src/libcore/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,7 @@
5151
#![cfg(not(test))]
5252

5353
#![stable(feature = "core", since = "1.6.0")]
54-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
55-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
56-
html_root_url = "https://doc.rust-lang.org/nightly/",
54+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
5755
html_playground_url = "https://play.rust-lang.org/",
5856
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
5957
test(no_crate_inject, attr(deny(warnings))),

src/libfmt_macros/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
//! Parsing does not happen at runtime: structures of `std::fmt::rt` are
55
//! generated instead.
66
7-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
8-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
9-
html_root_url = "https://doc.rust-lang.org/nightly/",
7+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
108
html_playground_url = "https://play.rust-lang.org/",
119
test(attr(deny(warnings))))]
1210

src/libgraphviz/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -271,9 +271,7 @@
271271
//!
272272
//! * [DOT language](http://www.graphviz.org/doc/info/lang.html)
273273
274-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
275-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
276-
html_root_url = "https://doc.rust-lang.org/nightly/",
274+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
277275
test(attr(allow(unused_variables), deny(warnings))))]
278276

279277
#![deny(rust_2018_idioms)]

src/libpanic_abort/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,7 @@
55
66
#![no_std]
77
#![unstable(feature = "panic_abort", issue = "32837")]
8-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
9-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
10-
html_root_url = "https://doc.rust-lang.org/nightly/",
8+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
119
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
1210
#![panic_runtime]
1311

src/libpanic_unwind/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,7 @@
1414
1515
#![no_std]
1616
#![unstable(feature = "panic_unwind", issue = "32837")]
17-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
18-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
19-
html_root_url = "https://doc.rust-lang.org/nightly/",
17+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
2018
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2119

2220
#![feature(allocator_api)]

src/libproc_macro/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,7 @@
99
1010
#![stable(feature = "proc_macro_lib", since = "1.15.0")]
1111
#![deny(missing_docs)]
12-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
13-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
14-
html_root_url = "https://doc.rust-lang.org/nightly/",
12+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/",
1513
html_playground_url = "https://play.rust-lang.org/",
1614
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
1715
test(no_crate_inject, attr(deny(warnings))),

src/librustc/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@
2626
//!
2727
//! This API is completely unstable and subject to change.
2828
29-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
30-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
31-
html_root_url = "https://doc.rust-lang.org/nightly/")]
29+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
3230

3331
#![deny(rust_2018_idioms)]
3432
#![allow(explicit_outlives_requirements)]

src/librustc_apfloat/lib.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,7 @@
3030
//!
3131
//! This API is completely unstable and subject to change.
3232
33-
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
34-
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
35-
html_root_url = "https://doc.rust-lang.org/nightly/")]
33+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/")]
3634
#![forbid(unsafe_code)]
3735
#![deny(rust_2018_idioms)]
3836

0 commit comments

Comments
 (0)