Skip to content

Commit 5c92a8e

Browse files
committed
Use the same html_root_url for all docs
1 parent afc1b20 commit 5c92a8e

File tree

36 files changed

+36
-36
lines changed

36 files changed

+36
-36
lines changed

src/liballoc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
#![crate_type = "rlib"]
6767
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
6868
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
69-
html_root_url = "http://doc.rust-lang.org/")]
69+
html_root_url = "http://doc.rust-lang.org/nightly/")]
7070

7171
#![no_std]
7272
#![feature(lang_items, phase, unsafe_destructor)]

src/libarena/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#![license = "MIT/ASL2"]
2727
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2828
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
29-
html_root_url = "http://doc.rust-lang.org/master/")]
29+
html_root_url = "http://doc.rust-lang.org/nightly/")]
3030

3131
#![feature(unsafe_destructor)]
3232
#![allow(missing_doc)]

src/libcollections/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
#![license = "MIT/ASL2"]
2020
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2121
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
22-
html_root_url = "http://doc.rust-lang.org/master/",
22+
html_root_url = "http://doc.rust-lang.org/nightly/",
2323
html_playground_url = "http://play.rust-lang.org/")]
2424

2525
#![allow(unknown_features)]

src/libcore/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
#![crate_type = "rlib"]
5454
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5555
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
56-
html_root_url = "http://doc.rust-lang.org/master/",
56+
html_root_url = "http://doc.rust-lang.org/nightly/",
5757
html_playground_url = "http://play.rust-lang.org/")]
5858

5959
#![no_std]

src/libdebug/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#![crate_type = "dylib"]
2424
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2525
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
26-
html_root_url = "http://doc.rust-lang.org/master/")]
26+
html_root_url = "http://doc.rust-lang.org/nightly/")]
2727
#![experimental]
2828
#![feature(macro_rules)]
2929
#![allow(experimental)]

src/libflate/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the
2525
#![license = "MIT/ASL2"]
2626
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
2727
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
28-
html_root_url = "http://doc.rust-lang.org/master/")]
28+
html_root_url = "http://doc.rust-lang.org/nightly/")]
2929
#![feature(phase)]
3030

3131
#[cfg(test)] #[phase(plugin, link)] extern crate log;

src/libfourcc/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ fn main() {
4848
#![license = "MIT/ASL2"]
4949
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
5050
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
51-
html_root_url = "http://doc.rust-lang.org/master/")]
51+
html_root_url = "http://doc.rust-lang.org/nightly/")]
5252

5353
#![feature(plugin_registrar)]
5454

src/libgetopts/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
#![license = "MIT/ASL2"]
8686
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
8787
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
88-
html_root_url = "http://doc.rust-lang.org/master/",
88+
html_root_url = "http://doc.rust-lang.org/nightly/",
8989
html_playground_url = "http://play.rust-lang.org/")]
9090
#![feature(globs, phase)]
9191
#![feature(import_shadowing)]

src/libglob/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
#![license = "MIT/ASL2"]
3232
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
3333
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
34-
html_root_url = "http://doc.rust-lang.org/master/",
34+
html_root_url = "http://doc.rust-lang.org/nightly/",
3535
html_playground_url = "http://play.rust-lang.org/")]
3636
#![allow(deprecated)]
3737

src/libgraphviz/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ pub fn main() {
273273
#![license = "MIT/ASL2"]
274274
#![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png",
275275
html_favicon_url = "http://www.rust-lang.org/favicon.ico",
276-
html_root_url = "http://doc.rust-lang.org/master/")]
276+
html_root_url = "http://doc.rust-lang.org/nightly/")]
277277

278278
use std::io;
279279
use std::str;

0 commit comments

Comments
 (0)