1
Fork 0

Rename rustdoc::html::render::cache to search_index

The old name wasn't very clear, while the new one makes it clear that
this is the code responsible for creating the search index.
This commit is contained in:
Noah Lev 2021-12-27 18:39:35 -08:00
parent 4ee34f3551
commit 60a1abe4c5
7 changed files with 6 additions and 6 deletions

View file

@ -24,7 +24,7 @@ use rustc_target::spec::abi::Abi;
use crate::clean::{self, utils::find_nearest_parent_module, ExternalCrate, ItemId, PrimitiveType};
use crate::formats::item_type::ItemType;
use crate::html::escape::Escape;
use crate::html::render::cache::ExternalLocation;
use crate::html::render::search_index::ExternalLocation;
use crate::html::render::Context;
use super::url_parts_builder::UrlPartsBuilder;