summary refs log tree commit diff
path: root/src/doc/rustc-dev-guide
diff options
context:
space:
mode:
authorHoblovski <daizy19@mails.tsinghua.edu.cn>2023-03-16 16:06:37 +0800
committerTshepang Mbambo <tshepang@gmail.com>2023-03-16 11:11:46 +0200
commitf93e81c854336090f3893d8c3947db6eb2def89b (patch)
treef9cf24564be8e764e14daa125b0d3f64f4d451c8 /src/doc/rustc-dev-guide
parent8bcd15e64056e7b14d774d3762024493b796c1a7 (diff)
downloadrust-f93e81c854336090f3893d8c3947db6eb2def89b.tar.gz
rust-f93e81c854336090f3893d8c3947db6eb2def89b.zip
Fix "Crate disambiguator" in libs-and-metadata.md
Diffstat (limited to 'src/doc/rustc-dev-guide')
-rw-r--r--src/doc/rustc-dev-guide/src/backend/libs-and-metadata.md5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/doc/rustc-dev-guide/src/backend/libs-and-metadata.md b/src/doc/rustc-dev-guide/src/backend/libs-and-metadata.md
index 5e005c965ed..b92a40b8b0e 100644
--- a/src/doc/rustc-dev-guide/src/backend/libs-and-metadata.md
+++ b/src/doc/rustc-dev-guide/src/backend/libs-and-metadata.md
@@ -103,9 +103,8 @@ The hash includes a variety of elements:
 * Hashes of the HIR nodes.
 * All of the upstream crate hashes.
 * All of the source filenames.
-* Hashes of certain command-line flags (like `-C metadata` via the [Crate
-  Disambiguator](#crate-disambiguator), and all CLI options marked with
-  `[TRACKED]`).
+* Hashes of certain command-line flags (like `-C metadata` via the [Stable
+  Crate Id](#stable-crate-id), and all CLI options marked with `[TRACKED]`).
 
 See [`compute_hir_hash`] for where the hash is actually computed.