about summary refs log tree commit diff
diff options
context:
space:
mode:
authorTshepang Mbambo <tshepang@gmail.com>2023-02-07 04:25:05 +0200
committerTshepang Mbambo <tshepang@gmail.com>2023-02-07 04:25:05 +0200
commit8d14502574bfc978f0f16fd2e407fa6eceb466c4 (patch)
tree7e4269cf56c6dbf1b249ed3544325c20e0d98794
parente1eaa2d5d4d1f5b7b89561a940718058d414e89c (diff)
downloadrust-8d14502574bfc978f0f16fd2e407fa6eceb466c4.tar.gz
rust-8d14502574bfc978f0f16fd2e407fa6eceb466c4.zip
refer to new home
The module has since been made its own crate...
see 2d75a339ca9e7cd11338b165311927e6eb73cca4.
-rw-r--r--compiler/rustc_session/src/session.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_session/src/session.rs b/compiler/rustc_session/src/session.rs
index 8a0176f6391..8abd6f1e009 100644
--- a/compiler/rustc_session/src/session.rs
+++ b/compiler/rustc_session/src/session.rs
@@ -156,7 +156,7 @@ pub struct Session {
     /// `-C metadata` arguments passed to the compiler. Its value forms a unique
     /// global identifier for the crate. It is used to allow multiple crates
     /// with the same name to coexist. See the
-    /// `rustc_codegen_llvm::back::symbol_names` module for more information.
+    /// `rustc_symbol_mangling` crate for more information.
     pub stable_crate_id: OnceCell<StableCrateId>,
 
     features: OnceCell<rustc_feature::Features>,