mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-26 21:13:37 +00:00
Fix typo
This commit is contained in:
parent
9b441b9c67
commit
943de55214
4 changed files with 3 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
use ide_db::{
|
||||
imports::import_assets::item_for_path_search, use_trivial_contructor::use_trivial_constructor,
|
||||
imports::import_assets::item_for_path_search, use_trivial_constructor::use_trivial_constructor,
|
||||
};
|
||||
use itertools::Itertools;
|
||||
use stdx::format_to;
|
||||
|
|
|
@ -22,7 +22,7 @@ pub mod source_change;
|
|||
pub mod symbol_index;
|
||||
pub mod traits;
|
||||
pub mod ty_filter;
|
||||
pub mod use_trivial_contructor;
|
||||
pub mod use_trivial_constructor;
|
||||
|
||||
pub mod imports {
|
||||
pub mod import_assets;
|
||||
|
|
|
@ -5,7 +5,7 @@ use hir::{
|
|||
};
|
||||
use ide_db::{
|
||||
assists::Assist, famous_defs::FamousDefs, imports::import_assets::item_for_path_search,
|
||||
source_change::SourceChange, use_trivial_contructor::use_trivial_constructor, FxHashMap,
|
||||
source_change::SourceChange, use_trivial_constructor::use_trivial_constructor, FxHashMap,
|
||||
};
|
||||
use stdx::format_to;
|
||||
use syntax::{
|
||||
|
|
Loading…
Reference in a new issue