mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-11-18 19:21:38 +00:00
minor: Fix grammar in doc comments
"too" should be "to" here.
This commit is contained in:
parent
4f35021ca9
commit
7f6b8745c8
2 changed files with 4 additions and 4 deletions
|
|
@ -582,17 +582,17 @@ impl Analysis {
|
|||
self.with_db(|db| parent_module::parent_module(db, position))
|
||||
}
|
||||
|
||||
/// Returns crates this file belongs too.
|
||||
/// Returns crates that this file belongs to.
|
||||
pub fn crates_for(&self, file_id: FileId) -> Cancellable<Vec<CrateId>> {
|
||||
self.with_db(|db| parent_module::crates_for(db, file_id))
|
||||
}
|
||||
|
||||
/// Returns crates this file belongs too.
|
||||
/// Returns crates that this file belongs to.
|
||||
pub fn transitive_rev_deps(&self, crate_id: CrateId) -> Cancellable<Vec<CrateId>> {
|
||||
self.with_db(|db| db.crate_graph().transitive_rev_deps(crate_id).collect())
|
||||
}
|
||||
|
||||
/// Returns crates this file *might* belong too.
|
||||
/// Returns crates that this file *might* belong to.
|
||||
pub fn relevant_crates_for(&self, file_id: FileId) -> Cancellable<Vec<CrateId>> {
|
||||
self.with_db(|db| db.relevant_crates(file_id).iter().copied().collect())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue