about summary refs log tree commit diff
path: root/src/librustdoc/html/render/mod.rs
diff options
context:
space:
mode:
authorYotam Ofek <yotam.ofek@gmail.com>2025-09-30 17:12:31 +0300
committerYotam Ofek <yotam.ofek@gmail.com>2025-09-30 22:01:30 +0300
commit2d03ab1486c11f2c5f8a19ae040b94edc090b279 (patch)
tree3af329d81c4644f0266e275f35f91e804f889a0f /src/librustdoc/html/render/mod.rs
parent6edf05b740070429e57ec18e5c027167dbb17ab4 (diff)
downloadrust-2d03ab1486c11f2c5f8a19ae040b94edc090b279.tar.gz
rust-2d03ab1486c11f2c5f8a19ae040b94edc090b279.zip
Replace `rustc_span::Span` with a stripped down version for librustdoc's highlighter
Diffstat (limited to 'src/librustdoc/html/render/mod.rs')
-rw-r--r--src/librustdoc/html/render/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustdoc/html/render/mod.rs b/src/librustdoc/html/render/mod.rs
index 97dcaf57cdf..d6371e4dbab 100644
--- a/src/librustdoc/html/render/mod.rs
+++ b/src/librustdoc/html/render/mod.rs
@@ -36,7 +36,7 @@ mod ordered_json;
 mod print_item;
 pub(crate) mod sidebar;
 mod sorted_template;
-mod span_map;
+pub(crate) mod span_map;
 mod type_layout;
 mod write_shared;