about summary refs log tree commit diff
path: root/compiler/rustc_session
diff options
context:
space:
mode:
authoronur-ozkan <work@onurozkan.dev>2024-07-07 00:07:08 +0300
committeronur-ozkan <work@onurozkan.dev>2024-07-07 00:07:08 +0300
commit48192701e0385e2f045da79d34bd5e856cf32496 (patch)
tree0e2ea4b1f4da3888452bd55b48fc0f405a896d6f /compiler/rustc_session
parent51917e2e69702e5752bce6a4f3bfd285d0f4ae39 (diff)
use "bootstrap" instead of "rustbuild" in comments and docs
Signed-off-by: onur-ozkan <work@onurozkan.dev>
Diffstat (limited to 'compiler/rustc_session')
-rw-r--r--compiler/rustc_session/src/config.rs2
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() {