From fa2d220567e6d0205ba7ed470a3f530fc02133ea Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Fri, 11 Jul 2014 11:21:57 -0700 Subject: [PATCH] Update doc URLs for version bump --- 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/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/librustuv/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 0118828ae18e..e672c555b804 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.11.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 cce2d14efa9f..06ec2588ac33 100644 --- a/src/libcollections/lib.rs +++ b/src/libcollections/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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, managed_boxes, default_type_params, phase, globs)] diff --git a/src/libcore/lib.rs b/src/libcore/lib.rs index 6d76f7c36e87..faa4b75d7faa 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.11.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 1d15c62e7523..6341a3805635 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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![experimental] #![feature(managed_boxes, macro_rules)] #![allow(experimental)] diff --git a/src/libflate/lib.rs b/src/libflate/lib.rs index b9d61ab38684..4226ac14118a 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.11.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 b490f0903020..aa8d84bec171 100644 --- a/src/libfourcc/lib.rs +++ b/src/libfourcc/lib.rs @@ -46,7 +46,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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(plugin_registrar, managed_boxes)] diff --git a/src/libgetopts/lib.rs b/src/libgetopts/lib.rs index cf879c5d7efe..eaec31a45f42 100644 --- a/src/libgetopts/lib.rs +++ b/src/libgetopts/lib.rs @@ -83,7 +83,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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(globs, phase)] #![deny(missing_doc)] diff --git a/src/libglob/lib.rs b/src/libglob/lib.rs index 637ceb00ce67..7aa1cf6eb1dc 100644 --- a/src/libglob/lib.rs +++ b/src/libglob/lib.rs @@ -30,7 +30,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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] use std::cell::Cell; diff --git a/src/libgraphviz/lib.rs b/src/libgraphviz/lib.rs index e5c2cdb43657..9d2f43b9513e 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.11.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 3574f415815d..c9c2dcc374cf 100644 --- a/src/libgreen/lib.rs +++ b/src/libgreen/lib.rs @@ -204,7 +204,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.11.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 57c187b5c64c..2859e1c985f5 100644 --- a/src/libhexfloat/lib.rs +++ b/src/libhexfloat/lib.rs @@ -43,7 +43,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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(plugin_registrar, managed_boxes)] extern crate syntax; diff --git a/src/liblibc/lib.rs b/src/liblibc/lib.rs index 16e452fdcf9d..6003f2702cb7 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.11.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 c4c18ab6d39f..554f27b881b7 100644 --- a/src/liblog/lib.rs +++ b/src/liblog/lib.rs @@ -112,7 +112,7 @@ if logging is disabled, none of the components of the log will be executed. #![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.11.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 f9a6ef3a9634..d358aa6b6453 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.11.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 36207266e58e..5cc2eee7da75 100644 --- a/src/libnum/lib.rs +++ b/src/libnum/lib.rs @@ -51,7 +51,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.11.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 9c01cb9e9dbe..9c33b713e4a6 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.11.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/libregex/lib.rs b/src/libregex/lib.rs index 67ab8e052d15..1bb7f605e547 100644 --- a/src/libregex/lib.rs +++ b/src/libregex/lib.rs @@ -363,7 +363,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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase)] diff --git a/src/libregex_macros/lib.rs b/src/libregex_macros/lib.rs index 0ef8f056b3f4..6545163fdbb6 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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(plugin_registrar, managed_boxes, quote)] diff --git a/src/librlibc/lib.rs b/src/librlibc/lib.rs index 98ba9990d9b9..cb27596c98c6 100644 --- a/src/librlibc/lib.rs +++ b/src/librlibc/lib.rs @@ -25,7 +25,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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(intrinsics)] #![no_std] diff --git a/src/librustc/lib.rs b/src/librustc/lib.rs index 97ea425df997..63fba0fd4b4e 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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![allow(deprecated)] #![feature(macro_rules, globs, struct_variant, managed_boxes, quote)] diff --git a/src/librustrt/lib.rs b/src/librustrt/lib.rs index c830b2e122ec..7cfbc4401c94 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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(macro_rules, phase, globs, thread_local, managed_boxes, asm)] #![feature(linkage, lang_items, unsafe_destructor, default_type_params)] diff --git a/src/librustuv/lib.rs b/src/librustuv/lib.rs index 0151be81e637..4874e123b2b8 100644 --- a/src/librustuv/lib.rs +++ b/src/librustuv/lib.rs @@ -41,7 +41,7 @@ via `close` and `delete` methods. #![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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, unsafe_destructor)] diff --git a/src/libsemver/lib.rs b/src/libsemver/lib.rs index 1832e7c0dff5..41f7aa5012d4 100644 --- a/src/libsemver/lib.rs +++ b/src/libsemver/lib.rs @@ -35,7 +35,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.11.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 7e31d1d59216..5cb272a19eb8 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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, managed_boxes, default_type_params, phase)] diff --git a/src/libstd/lib.rs b/src/libstd/lib.rs index 14782cafce34..df2fb9a82ad2 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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, globs, managed_boxes, linkage)] diff --git a/src/libsync/lib.rs b/src/libsync/lib.rs index 45e8f348ff51..f6a1684b6694 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.11.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 184ce39aaf2a..8b9cb0869497 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.11.0/")] + html_root_url = "http://doc.rust-lang.org/master/")] #![feature(macro_rules, globs, managed_boxes, default_type_params, phase)] #![feature(quote, unsafe_destructor)] diff --git a/src/libterm/lib.rs b/src/libterm/lib.rs index 66a1d4e797d1..3fc631422d5f 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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(macro_rules, phase)] diff --git a/src/libtest/lib.rs b/src/libtest/lib.rs index 4c982aa27c57..8fbb821d0b96 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.11.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 19168469b5b6..7655ace0ecb0 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.11.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 be94f117b539..b95fc3c495ee 100644 --- a/src/liburl/lib.rs +++ b/src/liburl/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.11.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 1579b676660b..1f84306f9ccc 100644 --- a/src/libuuid/lib.rs +++ b/src/libuuid/lib.rs @@ -61,7 +61,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.11.0/", + html_root_url = "http://doc.rust-lang.org/master/", html_playground_url = "http://play.rust-lang.org/")] #![feature(default_type_params)]