File tree 2 files changed +4
-4
lines changed
core/compiler/build_context
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1089,7 +1089,7 @@ impl RustDocFingerprint {
1089
1089
let Ok ( rustdoc_data) = paths:: read ( & fingerprint_path) else {
1090
1090
// If the fingerprint does not exist, do not clear out the doc
1091
1091
// directories. Otherwise this ran into problems where projects
1092
- // like rustbuild were creating the doc directory before running
1092
+ // like bootstrap were creating the doc directory before running
1093
1093
// `cargo doc` in a way that deleting it would break it.
1094
1094
return write_fingerprint ( ) ;
1095
1095
} ;
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ pub struct VersionInfo {
15
15
pub version : String ,
16
16
/// The release channel we were built for (stable/beta/nightly/dev).
17
17
///
18
- /// `None` if not built via rustbuild .
18
+ /// `None` if not built via bootstrap .
19
19
pub release_channel : Option < String > ,
20
20
/// Information about the Git repository we may have been built from.
21
21
///
@@ -42,9 +42,9 @@ pub fn version() -> VersionInfo {
42
42
} ;
43
43
}
44
44
45
- // This is the version set in rustbuild , which we use to match rustc.
45
+ // This is the version set in bootstrap , which we use to match rustc.
46
46
let version = option_env_str ! ( "CFG_RELEASE" ) . unwrap_or_else ( || {
47
- // If cargo is not being built by rustbuild , then we just use the
47
+ // If cargo is not being built by bootstrap , then we just use the
48
48
// version from cargo's own `Cargo.toml`.
49
49
//
50
50
// There are two versions at play here:
You can’t perform that action at this time.
0 commit comments