about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume.gomez@huawei.com>2023-09-11 14:20:15 +0200
committerGuillaume Gomez <guillaume.gomez@huawei.com>2023-09-11 14:20:15 +0200
commitc523701c2dca7668a7023da02e056c9541754a4a (patch)
treed40daddd4950a61e224f8c7cdcbfeb7c56d3de00
parent755835ef3d09b0d4a46ef4fb3e843151c696f90a (diff)
downloadrust-c523701c2dca7668a7023da02e056c9541754a4a.tar.gz
rust-c523701c2dca7668a7023da02e056c9541754a4a.zip
Add missing ID into the ID map
-rw-r--r--src/librustdoc/html/markdown.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/librustdoc/html/markdown.rs b/src/librustdoc/html/markdown.rs
index a8d85fb6fb4..b28019e3f91 100644
--- a/src/librustdoc/html/markdown.rs
+++ b/src/librustdoc/html/markdown.rs
@@ -1609,6 +1609,7 @@ fn init_id_map() -> FxHashMap<Cow<'static, str>, usize> {
     map.insert("blanket-implementations-list".into(), 1);
     map.insert("deref-methods".into(), 1);
     map.insert("layout".into(), 1);
+    map.insert("aliased-type".into(), 1);
     map
 }