From 6beddcfd830d1450d5e82b4bcb05d30ee459a8b1 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 9 Oct 2014 10:34:34 -0700 Subject: [PATCH 1/3] Revert "Update html_root_url for 0.12.0 release" This reverts commit 2288f332301b9e22db2890df256322650a7f3445. --- src/libarena/lib.rs | 2 +- src/libcollections/lib.rs | 2 +- src/libcore/lib.rs | 2 +- src/libdebug/lib.rs | 2 +- src/libflate/lib.rs | 2 +- src/libfourcc/lib.rs | 2 +- src/libgetopts/lib.rs | 2 +- src/libglob/lib.rs | 2 +- src/libgraphviz/lib.rs | 2 +- src/libgreen/lib.rs | 2 +- src/libhexfloat/lib.rs | 2 +- src/liblibc/lib.rs | 2 +- src/liblog/lib.rs | 2 +- src/libnative/lib.rs | 2 +- src/libnum/lib.rs | 2 +- src/librand/lib.rs | 2 +- src/librbml/lib.rs | 2 +- src/libregex/lib.rs | 2 +- src/libregex_macros/lib.rs | 2 +- src/librlibc/lib.rs | 2 +- src/librustc/lib.rs | 2 +- src/librustrt/lib.rs | 2 +- src/libsemver/lib.rs | 2 +- src/libserialize/lib.rs | 2 +- src/libstd/lib.rs | 2 +- src/libsync/lib.rs | 2 +- src/libsyntax/lib.rs | 2 +- src/libterm/lib.rs | 2 +- src/libtest/lib.rs | 2 +- src/libtime/lib.rs | 2 +- src/liburl/lib.rs | 2 +- src/libuuid/lib.rs | 2 +- 32 files changed, 32 insertions(+), 32 deletions(-) diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index 80f8019bc413f..d691e01a56276 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -26,7 +26,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(unsafe_destructor)] #![allow(missing_doc)] diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index 0149896c4d4f6..a357691e09765 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -19,7 +19,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index ce8d1ca46a815..584d09c75c8ea 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -53,7 +53,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![no_std] diff --git a/src/libdebug/lib.rs b/src/libdebug/lib.rs index 9446919d24e33..21abfae8be963 100644 --- a/src/libdebug/lib.rs +++ b/src/libdebug/lib.rs @@ -23,7 +23,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![experimental] #![feature(macro_rules)] #![allow(experimental)] diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs index 7daaca41cd51a..4226ac14118a4 100644 --- a/src/libflate/lib.rs +++ b/src/libflate/lib.rs @@ -25,7 +25,7 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(phase)] #[cfg(test)] #[phase(plugin, link)] extern crate log; diff --git a/src/libfourcc/lib.rs b/src/libfourcc/lib.rs index af379ac7c2ac9..388373807d856 100644 --- a/src/libfourcc/lib.rs +++ b/src/libfourcc/lib.rs @@ -48,7 +48,7 @@ fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(plugin_registrar)] diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs index 71e8b2e78ef10..80eb152c09104 100644 --- a/src/libgetopts/lib.rs +++ b/src/libgetopts/lib.rs @@ -85,7 +85,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(globs, phase)] #![feature(import_shadowing)] diff --git a/src/libglob/lib.rs b/src/libglob/lib.rs index 4de8faf20a033..596e7e5d931a8 100644 --- a/src/libglob/lib.rs +++ b/src/libglob/lib.rs @@ -31,7 +31,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(deprecated)] diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs index be37ba292d0dd..4ae7f882212f0 100644 --- a/src/libgraphviz/lib.rs +++ b/src/libgraphviz/lib.rs @@ -273,7 +273,7 @@ pub fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] use std::io; use std::str; diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs index b7a37e7ad3156..7c67a3840b057 100644 --- a/src/libgreen/lib.rs +++ b/src/libgreen/lib.rs @@ -180,7 +180,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] // NB this does *not* include globs, please keep it that way. diff --git a/src/libhexfloat/lib.rs b/src/libhexfloat/lib.rs index 672e3fc826e0e..2fcc3b9691a25 100644 --- a/src/libhexfloat/lib.rs +++ b/src/libhexfloat/lib.rs @@ -45,7 +45,7 @@ fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(plugin_registrar)] extern crate syntax; diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index d8faee206527c..affa452eb49de 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -16,7 +16,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] /*! diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs index 8f0054a37fa79..aa853b0474a03 100644 --- a/src/liblog/lib.rs +++ b/src/liblog/lib.rs @@ -164,7 +164,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules)] #![deny(missing_doc)] diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs index 63683076000ac..5def99d8ef34e 100644 --- a/src/libnative/lib.rs +++ b/src/libnative/lib.rs @@ -53,7 +53,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![deny(unused_result, unused_must_use)] #![allow(non_camel_case_types, deprecated)] diff --git a/src/libnum/lib.rs b/src/libnum/lib.rs index 4de08541a3cf7..fa41cf371129c 100644 --- a/src/libnum/lib.rs +++ b/src/libnum/lib.rs @@ -56,7 +56,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(deprecated)] // from_str_radix diff --git a/src/librand/lib.rs b/src/librand/lib.rs index 051137502ecb1..6d3d0aad4200b 100644 --- a/src/librand/lib.rs +++ b/src/librand/lib.rs @@ -21,7 +21,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase, globs)] diff --git a/src/librbml/lib.rs b/src/librbml/lib.rs index 27a7445c7bb31..7480cf320cff2 100644 --- a/src/librbml/lib.rs +++ b/src/librbml/lib.rs @@ -22,7 +22,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] #![feature(macro_rules, phase, slicing_syntax)] diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs index a4b713b4d1dfb..fdfd8c1eae25c 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -365,7 +365,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libregex_macros/lib.rs b/src/libregex_macros/lib.rs index 6663e5a3bb3fe..67018769fb371 100644 --- a/src/libregex_macros/lib.rs +++ b/src/libregex_macros/lib.rs @@ -17,7 +17,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(plugin_registrar, quote)] diff --git a/src/librlibc/lib.rs b/src/librlibc/lib.rs index 1539d16c17ece..c24a7e9ca77d1 100644 --- a/src/librlibc/lib.rs +++ b/src/librlibc/lib.rs @@ -26,7 +26,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(import_shadowing, intrinsics, phase)] #![no_std] diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 14927e5d8ab87..e38f1f24f01df 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -26,7 +26,7 @@ This API is completely unstable and subject to change. #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![allow(deprecated)] #![allow(unknown_features)] diff --git a/src/librustrt/lib.rs b/src/librustrt/lib.rs index 64e5970092bb7..d3ea07291a423 100644 --- a/src/librustrt/lib.rs +++ b/src/librustrt/lib.rs @@ -14,7 +14,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![allow(unknown_features)] #![feature(macro_rules, phase, globs, thread_local, asm)] diff --git a/src/libsemver/lib.rs b/src/libsemver/lib.rs index ea42dc0c7708e..56c0f24509b8e 100644 --- a/src/libsemver/lib.rs +++ b/src/libsemver/lib.rs @@ -37,7 +37,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(default_type_params)] use std::char; diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs index e906fed448fac..6de8ca198448f 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -21,7 +21,7 @@ Core encoding and decoding interfaces. #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] #![feature(macro_rules, default_type_params, phase, slicing_syntax)] diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 4b1bb96e8ff69..19b4d430562fd 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -102,7 +102,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs index 71e74308abd30..e0acce1cd945a 100644 --- a/src/libsync/lib.rs +++ b/src/libsync/lib.rs @@ -24,7 +24,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase, globs, macro_rules, unsafe_destructor)] diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index a17b08ba84da3..64dedd4592397 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -21,7 +21,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![allow(unknown_features)] #![feature(macro_rules, globs, default_type_params, phase, slicing_syntax)] diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index bd5a0e8f4160d..b05e0a4bff398 100644 --- a/src/libterm/lib.rs +++ b/src/libterm/lib.rs @@ -46,7 +46,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 09c475792a30f..04489d780278d 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -31,7 +31,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(asm, macro_rules, phase)] diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs index 1d23b0fcadb2b..6ca33f0dabc7c 100644 --- a/src/libtime/lib.rs +++ b/src/libtime/lib.rs @@ -18,7 +18,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase)] diff --git a/src/liburl/lib.rs b/src/liburl/lib.rs index 5447fa10c8d53..cb4940861ebc5 100644 --- a/src/liburl/lib.rs +++ b/src/liburl/lib.rs @@ -18,7 +18,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)] diff --git a/src/libuuid/lib.rs b/src/libuuid/lib.rs index 449df0b804cb0..c0c3f707ecb3c 100644 --- a/src/libuuid/lib.rs +++ b/src/libuuid/lib.rs @@ -65,7 +65,7 @@ Examples of string representations: #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/0.12.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)] From afc1b20d8e21e4eaf6f97d8dbc746826c2ef1571 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 9 Oct 2014 10:41:23 -0700 Subject: [PATCH 2/3] Bump version to 0.13.0 --- man/rustc.1 | 2 +- man/rustdoc.1 | 2 +- mk/main.mk | 2 +- src/etc/kate/rust.xml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/man/rustc.1 b/man/rustc.1 index 6b7243541c41a..197b0d43744d0 100644 --- a/man/rustc.1 +++ b/man/rustc.1 @@ -1,4 +1,4 @@ -.TH RUSTC "1" "March 2014" "rustc 0.12.0" "User Commands" +.TH RUSTC "1" "March 2014" "rustc 0.13.0" "User Commands" .SH NAME rustc \- The Rust compiler .SH SYNOPSIS diff --git a/man/rustdoc.1 b/man/rustdoc.1 index e675aca38aa98..4c6557f0f6580 100644 --- a/man/rustdoc.1 +++ b/man/rustdoc.1 @@ -1,4 +1,4 @@ -.TH RUSTDOC "1" "March 2014" "rustdoc 0.12.0" "User Commands" +.TH RUSTDOC "1" "March 2014" "rustdoc 0.13.0" "User Commands" .SH NAME rustdoc \- generate documentation from Rust source code .SH SYNOPSIS diff --git a/mk/main.mk b/mk/main.mk index a12198b771b82..9ad4ce16e0828 100644 --- a/mk/main.mk +++ b/mk/main.mk @@ -13,7 +13,7 @@ ###################################################################### # The version number -CFG_RELEASE_NUM=0.12.0 +CFG_RELEASE_NUM=0.13.0 CFG_FILENAME_EXTRA=4e7c5e5c diff --git a/src/etc/kate/rust.xml b/src/etc/kate/rust.xml index 1c48b9d4f0c51..89bb6eb169fc7 100644 --- a/src/etc/kate/rust.xml +++ b/src/etc/kate/rust.xml @@ -7,7 +7,7 @@ ]> - + fn From 5c92a8e054d508c260653386bd4861d249a6e09a Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 9 Oct 2014 10:47:22 -0700 Subject: [PATCH 3/3] Use the same html_root_url for all docs --- src/liballoc/lib.rs | 2 +- src/libarena/lib.rs | 2 +- src/libcollections/lib.rs | 2 +- src/libcore/lib.rs | 2 +- src/libdebug/lib.rs | 2 +- src/libflate/lib.rs | 2 +- src/libfourcc/lib.rs | 2 +- src/libgetopts/lib.rs | 2 +- src/libglob/lib.rs | 2 +- src/libgraphviz/lib.rs | 2 +- src/libgreen/lib.rs | 2 +- src/libhexfloat/lib.rs | 2 +- src/liblibc/lib.rs | 2 +- src/liblog/lib.rs | 2 +- src/libnative/lib.rs | 2 +- src/libnum/lib.rs | 2 +- src/librand/lib.rs | 2 +- src/librbml/lib.rs | 2 +- src/libregex/lib.rs | 2 +- src/libregex_macros/lib.rs | 2 +- src/librlibc/lib.rs | 2 +- src/librustc/lib.rs | 2 +- src/librustc_back/lib.rs | 2 +- src/librustc_llvm/lib.rs | 2 +- src/librustrt/lib.rs | 2 +- src/libsemver/lib.rs | 2 +- src/libserialize/lib.rs | 2 +- src/libstd/lib.rs | 2 +- src/libsync/lib.rs | 2 +- src/libsyntax/lib.rs | 2 +- src/libterm/lib.rs | 2 +- src/libtest/lib.rs | 2 +- src/libtime/lib.rs | 2 +- src/libunicode/lib.rs | 2 +- src/liburl/lib.rs | 2 +- src/libuuid/lib.rs | 2 +- 36 files changed, 36 insertions(+), 36 deletions(-) diff --git a/src/liballoc/lib.rs b/src/liballoc/lib.rs index c31d746d8f2a7..7b008a76dd6df 100644 --- a/src/liballoc/lib.rs +++ b/src/liballoc/lib.rs @@ -66,7 +66,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![no_std] #![feature(lang_items, phase, unsafe_destructor)] diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index d691e01a56276..1cd6f7f66851f 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -26,7 +26,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(unsafe_destructor)] #![allow(missing_doc)] diff --git a/src/libcollections/lib.rs b/src/libcollections/lib.rs index a357691e09765..535b15708c392 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/lib.rs @@ -19,7 +19,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index 584d09c75c8ea..8134f5210243a 100644 --- a/src/libcore/lib.rs +++ b/src/libcore/lib.rs @@ -53,7 +53,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![no_std] diff --git a/src/libdebug/lib.rs b/src/libdebug/lib.rs index 21abfae8be963..459e1592f6734 100644 --- a/src/libdebug/lib.rs +++ b/src/libdebug/lib.rs @@ -23,7 +23,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![experimental] #![feature(macro_rules)] #![allow(experimental)] diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs index 4226ac14118a4..e5bd81cb81607 100644 --- a/src/libflate/lib.rs +++ b/src/libflate/lib.rs @@ -25,7 +25,7 @@ Simple [DEFLATE][def]-based compression. This is a wrapper around the #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(phase)] #[cfg(test)] #[phase(plugin, link)] extern crate log; diff --git a/src/libfourcc/lib.rs b/src/libfourcc/lib.rs index 388373807d856..ffa72e6d7958e 100644 --- a/src/libfourcc/lib.rs +++ b/src/libfourcc/lib.rs @@ -48,7 +48,7 @@ fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(plugin_registrar)] diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs index 80eb152c09104..5adad73b22dd1 100644 --- a/src/libgetopts/lib.rs +++ b/src/libgetopts/lib.rs @@ -85,7 +85,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(globs, phase)] #![feature(import_shadowing)] diff --git a/src/libglob/lib.rs b/src/libglob/lib.rs index 596e7e5d931a8..d9584c2db4ebb 100644 --- a/src/libglob/lib.rs +++ b/src/libglob/lib.rs @@ -31,7 +31,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(deprecated)] diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs index 4ae7f882212f0..f7908b76ab516 100644 --- a/src/libgraphviz/lib.rs +++ b/src/libgraphviz/lib.rs @@ -273,7 +273,7 @@ pub fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] use std::io; use std::str; diff --git a/src/libgreen/lib.rs b/src/libgreen/lib.rs index 7c67a3840b057..8eee7ed845fec 100644 --- a/src/libgreen/lib.rs +++ b/src/libgreen/lib.rs @@ -180,7 +180,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] // NB this does *not* include globs, please keep it that way. diff --git a/src/libhexfloat/lib.rs b/src/libhexfloat/lib.rs index 2fcc3b9691a25..8335cc16d649f 100644 --- a/src/libhexfloat/lib.rs +++ b/src/libhexfloat/lib.rs @@ -45,7 +45,7 @@ fn main() { #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(plugin_registrar)] extern crate syntax; diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index affa452eb49de..d7898321598aa 100644 --- a/src/liblibc/lib.rs +++ b/src/liblibc/lib.rs @@ -16,7 +16,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] /*! diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs index aa853b0474a03..4c0406eedf2e2 100644 --- a/src/liblog/lib.rs +++ b/src/liblog/lib.rs @@ -164,7 +164,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules)] #![deny(missing_doc)] diff --git a/src/libnative/lib.rs b/src/libnative/lib.rs index 5def99d8ef34e..d738a3c93b8df 100644 --- a/src/libnative/lib.rs +++ b/src/libnative/lib.rs @@ -53,7 +53,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![deny(unused_result, unused_must_use)] #![allow(non_camel_case_types, deprecated)] diff --git a/src/libnum/lib.rs b/src/libnum/lib.rs index fa41cf371129c..063bb17e09a6d 100644 --- a/src/libnum/lib.rs +++ b/src/libnum/lib.rs @@ -56,7 +56,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(deprecated)] // from_str_radix diff --git a/src/librand/lib.rs b/src/librand/lib.rs index 6d3d0aad4200b..9a364150ec5ec 100644 --- a/src/librand/lib.rs +++ b/src/librand/lib.rs @@ -21,7 +21,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase, globs)] diff --git a/src/librbml/lib.rs b/src/librbml/lib.rs index 7480cf320cff2..07474a9f10587 100644 --- a/src/librbml/lib.rs +++ b/src/librbml/lib.rs @@ -22,7 +22,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] #![feature(macro_rules, phase, slicing_syntax)] diff --git a/src/libregex/lib.rs b/src/libregex/lib.rs index fdfd8c1eae25c..bb6df26dab4f5 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -365,7 +365,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libregex_macros/lib.rs b/src/libregex_macros/lib.rs index 67018769fb371..f962e139d2df3 100644 --- a/src/libregex_macros/lib.rs +++ b/src/libregex_macros/lib.rs @@ -17,7 +17,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(plugin_registrar, quote)] diff --git a/src/librlibc/lib.rs b/src/librlibc/lib.rs index c24a7e9ca77d1..faa89bc9b1155 100644 --- a/src/librlibc/lib.rs +++ b/src/librlibc/lib.rs @@ -26,7 +26,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(import_shadowing, intrinsics, phase)] #![no_std] diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index e38f1f24f01df..bd440892515e5 100644 --- a/src/librustc/lib.rs +++ b/src/librustc/lib.rs @@ -26,7 +26,7 @@ This API is completely unstable and subject to change. #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(deprecated)] #![allow(unknown_features)] diff --git a/src/librustc_back/lib.rs b/src/librustc_back/lib.rs index 6486442deb8d8..c11eb3ab60357 100644 --- a/src/librustc_back/lib.rs +++ b/src/librustc_back/lib.rs @@ -29,7 +29,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(unknown_features)] #![feature(globs, phase, macro_rules, slicing_syntax)] diff --git a/src/librustc_llvm/lib.rs b/src/librustc_llvm/lib.rs index ad2b6891dc99e..741a3450a4242 100644 --- a/src/librustc_llvm/lib.rs +++ b/src/librustc_llvm/lib.rs @@ -20,7 +20,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(globs)] #![feature(link_args)] diff --git a/src/librustrt/lib.rs b/src/librustrt/lib.rs index d3ea07291a423..f2aece2971bc7 100644 --- a/src/librustrt/lib.rs +++ b/src/librustrt/lib.rs @@ -14,7 +14,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(unknown_features)] #![feature(macro_rules, phase, globs, thread_local, asm)] diff --git a/src/libsemver/lib.rs b/src/libsemver/lib.rs index 56c0f24509b8e..cc0e7d9ba2d98 100644 --- a/src/libsemver/lib.rs +++ b/src/libsemver/lib.rs @@ -37,7 +37,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(default_type_params)] use std::char; diff --git a/src/libserialize/lib.rs b/src/libserialize/lib.rs index 6de8ca198448f..e433868901672 100644 --- a/src/libserialize/lib.rs +++ b/src/libserialize/lib.rs @@ -21,7 +21,7 @@ Core encoding and decoding interfaces. #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] #![feature(macro_rules, default_type_params, phase, slicing_syntax)] diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 19b4d430562fd..ca11a7c04b7a5 100644 --- a/src/libstd/lib.rs +++ b/src/libstd/lib.rs @@ -102,7 +102,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs index e0acce1cd945a..a33e8a57137fa 100644 --- a/src/libsync/lib.rs +++ b/src/libsync/lib.rs @@ -24,7 +24,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase, globs, macro_rules, unsafe_destructor)] diff --git a/src/libsyntax/lib.rs b/src/libsyntax/lib.rs index 64dedd4592397..3a4c7abd7b836 100644 --- a/src/libsyntax/lib.rs +++ b/src/libsyntax/lib.rs @@ -21,7 +21,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![allow(unknown_features)] #![feature(macro_rules, globs, default_type_params, phase, slicing_syntax)] diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index b05e0a4bff398..5af978cdd75a2 100644 --- a/src/libterm/lib.rs +++ b/src/libterm/lib.rs @@ -46,7 +46,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![allow(unknown_features)] diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 04489d780278d..307c4b27886a4 100644 --- a/src/libtest/lib.rs +++ b/src/libtest/lib.rs @@ -31,7 +31,7 @@ #![crate_type = "dylib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/")] + html_root_url = "http://doc.rust-lang.org/nightly/")] #![feature(asm, macro_rules, phase)] diff --git a/src/libtime/lib.rs b/src/libtime/lib.rs index 6ca33f0dabc7c..b94885290b3a4 100644 --- a/src/libtime/lib.rs +++ b/src/libtime/lib.rs @@ -18,7 +18,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(phase)] diff --git a/src/libunicode/lib.rs b/src/libunicode/lib.rs index 239966cfd475d..2918bad03df29 100644 --- a/src/libunicode/lib.rs +++ b/src/libunicode/lib.rs @@ -26,7 +26,7 @@ #![crate_type = "rlib"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![no_std] diff --git a/src/liburl/lib.rs b/src/liburl/lib.rs index cb4940861ebc5..bf9a959afffbd 100644 --- a/src/liburl/lib.rs +++ b/src/liburl/lib.rs @@ -18,7 +18,7 @@ #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)] diff --git a/src/libuuid/lib.rs b/src/libuuid/lib.rs index c0c3f707ecb3c..c041ca3799dc4 100644 --- a/src/libuuid/lib.rs +++ b/src/libuuid/lib.rs @@ -65,7 +65,7 @@ Examples of string representations: #![license = "MIT/ASL2"] #![doc(html_logo_url = "http://www.rust-lang.org/logos/rust-logo-128x128-blk-v2.png", html_favicon_url = "http://www.rust-lang.org/favicon.ico", - html_root_url = "http://doc.rust-lang.org/master/", + html_root_url = "http://doc.rust-lang.org/nightly/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)]