Skip to content

Commit 24246fc

Browse files
committed
dustlang.com
1 parent 91a385e commit 24246fc

File tree

482 files changed

+2077
-2077
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

482 files changed

+2077
-2077
lines changed

COPYRIGHT

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ copyright assignment is required to contribute to the Dust project.
1111

1212
Some files include explicit copyright notices and/or license notices.
1313
For full authorship information, see the version control history or
14-
https://thanks.dust-lang.org
14+
https://thanks.dustlang.com
1515

1616
Except as otherwise noted (below and/or in individual files), Dust is
1717
licensed under the Apache License, Version 2.0 <LICENSE-APACHE> or

README.md

+9-9

RELEASES.md

+1,064-1,064

compiler/dustc_ast/README.md

+2-2

compiler/dustc_ast/src/lib.ds

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//! This API is completely unstable and subject to change.
66

77
#![doc(
8-
html_root_url = "https://doc.dust-lang.org/nightly/nightly-dustc/",
8+
html_root_url = "https://doc.dustlang.com/nightly/nightly-dustc/",
99
test(attr(deny(warnings)))
1010
)]
1111
#![feature(box_syntax)]

compiler/dustc_ast_passes/src/ast_validation.ds

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ use std::mem;
2424
use std::ops::DerefMut;
2525

2626
const MORE_EXTERN: &str =
27-
"for more information, visit https://doc.dust-lang.org/std/keyword.extern.html";
27+
"for more information, visit https://doc.dustlang.com/std/keyword.extern.html";
2828

2929
/// Is `self` allowed semantically as the first parameter in an `FnDecl`?
3030
enum SelfSemantic {

compiler/dustc_builtin_macros/src/format.ds

+1-1
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,7 @@ impl<'a, 'b> Context<'a, 'b> {
483483
if !self.arg_with_formatting.is_empty() {
484484
e.note(
485485
"for information about formatting flags, visit \
486-
https://doc.dust-lang.org/std/fmt/index.html",
486+
https://doc.dustlang.com/std/fmt/index.html",
487487
);
488488
}
489489

compiler/dustc_builtin_macros/src/lib.ds

+1-1
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.dust-lang.org/nightly/nightly-dustc/")]
4+
#![doc(html_root_url = "https://doc.dustlang.com/nightly/nightly-dustc/")]
55
#![feature(box_patterns)]
66
#![feature(box_syntax)]
77
#![feature(bool_to_option)]

compiler/dustc_codegen_cranelift/example/alloc_system.ds

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
22
// file at the top-level directory of this distribution and at
3-
// http://dust-lang.org/COPYRIGHT.
3+
// http://dustlang.com/COPYRIGHT.
44
//
55
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
66
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license

compiler/dustc_codegen_llvm/README.md

+1-1

compiler/dustc_codegen_llvm/src/lib.ds

+1-1
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.dust-lang.org/nightly/nightly-dustc/")]
7+
#![doc(html_root_url = "https://doc.dustlang.com/nightly/nightly-dustc/")]
88
#![feature(bool_to_option)]
99
#![feature(const_cstr_unchecked)]
1010
#![feature(crate_visibility_modifier)]

compiler/dustc_codegen_ssa/README.md

+1-1

compiler/dustc_codegen_ssa/src/lib.ds

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#![doc(html_root_url = "https://doc.dust-lang.org/nightly/nightly-dustc/")]
1+
#![doc(html_root_url = "https://doc.dustlang.com/nightly/nightly-dustc/")]
22
#![feature(bool_to_option)]
33
#![feature(option_expect_none)]
44
#![feature(box_patterns)]

compiler/dustc_data_structures/src/lib.ds

+1-1
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.dust-lang.org/nightly/nightly-dustc/")]
9+
#![doc(html_root_url = "https://doc.dustlang.com/nightly/nightly-dustc/")]
1010
#![feature(array_windows)]
1111
#![feature(control_flow_enum)]
1212
#![feature(in_band_lifetimes)]

compiler/dustc_driver/README.md

+1-1

compiler/dustc_driver/src/lib.ds

+1-1
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.dust-lang.org/nightly/nightly-dustc/")]
7+
#![doc(html_root_url = "https://doc.dustlang.com/nightly/nightly-dustc/")]
88
#![feature(nll)]
99
#![feature(once_cell)]
1010
#![recursion_limit = "256"]

compiler/dustc_error_codes/src/error_codes/E0033.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0070.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0080.md

+2-2

compiler/dustc_error_codes/src/error_codes/E0106.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0132.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0133.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0152.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0154.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0260.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0307.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0328.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0364.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0365.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0369.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0374.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0375.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0376.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0382.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0387.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0392.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0435.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0455.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0463.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0499.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0501.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0502.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0503.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0505.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0507.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0521.md

+2-2

compiler/dustc_error_codes/src/error_codes/E0525.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0534.md

+1-1

compiler/dustc_error_codes/src/error_codes/E0535.md

+1-1

0 commit comments

Comments
 (0)