Skip to content

Commit 138a2e5

Browse files
committed
/nightly/nightly-rustc
1 parent dd66ea2 commit 138a2e5

File tree

29 files changed

+29
-29
lines changed

29 files changed

+29
-29
lines changed

compiler/rustc_apfloat/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
//!
3131
//! This API is completely unstable and subject to change.
3232
33-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
33+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
3434
#![no_std]
3535
#![forbid(unsafe_code)]
3636
#![feature(nll)]

compiler/rustc_arena/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
//! This crate implements several kinds of arena.
99
1010
#![doc(
11-
html_root_url = "https://doc.rust-lang.org/nightly-rustc/",
11+
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
1212
test(no_crate_inject, attr(deny(warnings)))
1313
)]
1414
#![feature(dropck_eyepatch)]

compiler/rustc_ast/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! This API is completely unstable and subject to change.
66
7-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/", test(attr(deny(warnings))))]
7+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/", test(attr(deny(warnings))))]
88
#![feature(box_syntax)]
99
#![feature(const_fn)] // For the `transmute` in `P::new`
1010
#![feature(const_fn_transmute)]

compiler/rustc_builtin_macros/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//! This crate contains implementations of built-in macros and other code generating facilities
22
//! injecting code into the crate before it is lowered to HIR.
33
4-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
4+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
55
#![feature(bool_to_option)]
66
#![feature(crate_visibility_modifier)]
77
#![feature(decl_macro)]

compiler/rustc_codegen_llvm/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! This API is completely unstable and subject to change.
66
7-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
7+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
88
#![feature(bool_to_option)]
99
#![feature(const_cstr_unchecked)]
1010
#![feature(crate_visibility_modifier)]

compiler/rustc_codegen_ssa/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
1+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
22
#![feature(bool_to_option)]
33
#![feature(option_expect_none)]
44
#![feature(box_patterns)]

compiler/rustc_data_structures/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
//!
77
//! This API is completely unstable and subject to change.
88
9-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
9+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
1010
#![allow(incomplete_features)]
1111
#![feature(array_windows)]
1212
#![feature(control_flow_enum)]

compiler/rustc_driver/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! This API is completely unstable and subject to change.
66
7-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
7+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
88
#![feature(nll)]
99
#![feature(once_cell)]
1010
#![recursion_limit = "256"]

compiler/rustc_errors/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! This module contains the code for creating and emitting diagnostics.
44
5-
#![doc(html_root_url = "https://doc.rust-lang.org/nightly-rustc/")]
5+
#![doc(html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/")]
66
#![feature(crate_visibility_modifier)]
77
#![feature(backtrace)]
88
#![feature(nll)]

compiler/rustc_graphviz/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
//! * [DOT language](http://www.graphviz.org/doc/info/lang.html)
273273
274274
#![doc(
275-
html_root_url = "https://doc.rust-lang.org/nightly-rustc/",
275+
html_root_url = "https://doc.rust-lang.org/nightly/nightly-rustc/",
276276
test(attr(allow(unused_variables), deny(warnings)))
277277
)]
278278
#![feature(nll)]

0 commit comments

Comments
 (0)