diff options
| author | Jubilee <46493976+workingjubilee@users.noreply.github.com> | 2024-07-13 20:19:45 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-07-13 20:19:45 -0700 |
| commit | 1d59d22ac1040012da7f83c3a9c1a76f69a99d23 (patch) | |
| tree | 55183e074925bcb78b33c1d4116f451c47ce3b03 /compiler/rustc_session/src | |
| parent | 4c493db0d9ce7e133402466e4339943dde278404 (diff) | |
| parent | 48192701e0385e2f045da79d34bd5e856cf32496 (diff) | |
| download | rust-1d59d22ac1040012da7f83c3a9c1a76f69a99d23.tar.gz rust-1d59d22ac1040012da7f83c3a9c1a76f69a99d23.zip | |
Rollup merge of #127434 - onur-ozkan:use-bootstrap-instead-of-rustbuild, r=Mark-Simulacrum
use "bootstrap" instead of "rustbuild" in comments and docs Let's stick with the single name "bootstrap" to refer to the bootstrap project to avoid confusion. This should make it clearer, especially for new contributors.
Diffstat (limited to 'compiler/rustc_session/src')
| -rw-r--r-- | compiler/rustc_session/src/config.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/config.rs b/compiler/rustc_session/src/config.rs index 41c99f7edee..e748d1ff47b 100644 --- a/compiler/rustc_session/src/config.rs +++ b/compiler/rustc_session/src/config.rs @@ -2620,7 +2620,7 @@ pub fn build_session_options(early_dcx: &mut EarlyDiagCtxt, matches: &getopts::M // This is the location used by the `rust-src` `rustup` component. let mut candidate = sysroot.join("lib/rustlib/src/rust"); if let Ok(metadata) = candidate.symlink_metadata() { - // Replace the symlink rustbuild creates, with its destination. + // Replace the symlink bootstrap creates, with its destination. // We could try to use `fs::canonicalize` instead, but that might // produce unnecessarily verbose path. if metadata.file_type().is_symlink() { |
