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:
parent
4ee34f3551
commit
60a1abe4c5
7 changed files with 6 additions and 6 deletions
|
|
@ -13,8 +13,8 @@ use rustc_span::edition::Edition;
|
|||
use rustc_span::source_map::FileName;
|
||||
use rustc_span::symbol::sym;
|
||||
|
||||
use super::cache::{build_index, ExternalLocation};
|
||||
use super::print_item::{full_path, item_path, print_item};
|
||||
use super::search_index::{build_index, ExternalLocation};
|
||||
use super::templates;
|
||||
use super::write_shared::write_shared;
|
||||
use super::{
|
||||
|
|
|
|||
|
|
@ -23,7 +23,7 @@
|
|||
//! These threads are not parallelized (they haven't been a bottleneck yet), and
|
||||
//! both occur before the crate is rendered.
|
||||
|
||||
crate mod cache;
|
||||
crate mod search_index;
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue