Skip to content

Commit 7fdbe69

Browse files
committed
rustdoc: Added issue_tracker_base_url annotations to crates
1 parent 9698e8f commit 7fdbe69

File tree

30 files changed

+56
-26
lines changed

30 files changed

+56
-26
lines changed

src/liballoc/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
7070
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
7171
html_root_url = "https://doc.rust-lang.org/nightly/",
72+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
7273
test(no_crate_inject))]
7374
#![no_std]
7475
#![cfg_attr(not(stage0), needs_allocator)]

src/libarena/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
#![crate_type = "dylib"]
2929
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3030
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
31-
html_root_url = "https://doc.rust-lang.org/nightly/")]
31+
html_root_url = "https://doc.rust-lang.org/nightly/",
32+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
3233

3334
#![feature(alloc)]
3435
#![feature(box_syntax)]

src/libcollections/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2727
html_root_url = "https://doc.rust-lang.org/nightly/",
2828
html_playground_url = "https://play.rust-lang.org/",
29+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/",
2930
test(no_crate_inject))]
3031

3132
#![allow(trivial_casts)]

src/libcore/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,8 @@
5858
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5959
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
6060
html_root_url = "https://doc.rust-lang.org/nightly/",
61-
html_playground_url = "https://play.rust-lang.org/")]
61+
html_playground_url = "https://play.rust-lang.org/",
62+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
6263
#![doc(test(no_crate_inject))]
6364

6465
#![no_core]

src/libflate/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
#![crate_type = "dylib"]
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
26-
html_root_url = "https://doc.rust-lang.org/nightly/")]
26+
html_root_url = "https://doc.rust-lang.org/nightly/",
27+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2728

2829
#![feature(libc)]
2930
#![feature(staged_api)]

src/libfmt_macros/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2626
html_root_url = "https://doc.rust-lang.org/nightly/",
27-
html_playground_url = "https://play.rust-lang.org/")]
27+
html_playground_url = "https://play.rust-lang.org/",
28+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2829

2930
#![feature(staged_api)]
3031
#![feature(unicode)]

src/libgetopts/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@
8888
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
8989
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
9090
html_root_url = "https://doc.rust-lang.org/nightly/",
91-
html_playground_url = "https://play.rust-lang.org/")]
91+
html_playground_url = "https://play.rust-lang.org/",
92+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
9293

9394
#![deny(missing_docs)]
9495
#![feature(staged_api)]

src/libgraphviz/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -283,7 +283,8 @@
283283
#![crate_type = "dylib"]
284284
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
285285
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
286-
html_root_url = "https://doc.rust-lang.org/nightly/")]
286+
html_root_url = "https://doc.rust-lang.org/nightly/",
287+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
287288

288289
#![feature(into_cow)]
289290
#![feature(str_escape)]

src/liblibc/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@
2121
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2222
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
2323
html_root_url = "https://doc.rust-lang.org/nightly/",
24-
html_playground_url = "https://play.rust-lang.org/")]
24+
html_playground_url = "https://play.rust-lang.org/",
25+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
2526
#![cfg_attr(test, feature(test))]
2627

2728
//! Bindings for the C standard library and other platform libraries

src/liblog/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,8 @@
167167
#![doc(html_logo_url = "https://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
168168
html_favicon_url = "https://doc.rust-lang.org/favicon.ico",
169169
html_root_url = "https://doc.rust-lang.org/nightly/",
170-
html_playground_url = "https://play.rust-lang.org/")]
170+
html_playground_url = "https://play.rust-lang.org/",
171+
issue_tracker_base_url = "https://github.com/rust-lang/rust/issues/")]
171172
#![deny(missing_docs)]
172173

173174
#![feature(box_raw)]

0 commit comments

Comments
 (0)