mirror of
https://github.com/rust-lang/rust.git
synced 2025-06-21 20:17:55 +00:00
Fix typo
This commit is contained in:
parent
3068af79ff
commit
542fbcbaed
@ -54,7 +54,7 @@ salsa::database_storage! {
|
||||
fn file_text() for crate::input::FileTextQuery;
|
||||
fn file_source_root() for crate::input::FileSourceRootQuery;
|
||||
fn source_root() for crate::input::SourceRootQuery;
|
||||
fn libraries() for crate::input::LibrarieseQuery;
|
||||
fn libraries() for crate::input::LibrariesQuery;
|
||||
fn library_symbols() for crate::input::LibrarySymbolsQuery;
|
||||
fn crate_graph() for crate::input::CrateGraphQuery;
|
||||
}
|
||||
|
@ -163,7 +163,7 @@ impl AnalysisHostImpl {
|
||||
.set(source_root_id, Arc::new(library.symbol_index));
|
||||
}
|
||||
self.db
|
||||
.query(crate::input::LibrarieseQuery)
|
||||
.query(crate::input::LibrariesQuery)
|
||||
.set((), Arc::new(libraries));
|
||||
}
|
||||
if let Some(crate_graph) = change.crate_graph {
|
||||
|
@ -53,7 +53,7 @@ salsa::query_group! {
|
||||
storage input;
|
||||
}
|
||||
fn libraries() -> Arc<Vec<SourceRootId>> {
|
||||
type LibrarieseQuery;
|
||||
type LibrariesQuery;
|
||||
storage input;
|
||||
}
|
||||
fn library_symbols(id: SourceRootId) -> Arc<SymbolIndex> {
|
||||
|
Loading…
Reference in New Issue
Block a user