diff options
Diffstat (limited to 'crates/ra_assists/src/lib.rs')
-rw-r--r-- | crates/ra_assists/src/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/ra_assists/src/lib.rs b/crates/ra_assists/src/lib.rs index eca6dec4b..f79189ae8 100644 --- a/crates/ra_assists/src/lib.rs +++ b/crates/ra_assists/src/lib.rs | |||
@@ -21,7 +21,7 @@ use ra_syntax::{TextRange, TextUnit}; | |||
21 | use ra_text_edit::TextEdit; | 21 | use ra_text_edit::TextEdit; |
22 | 22 | ||
23 | pub(crate) use crate::assist_ctx::{Assist, AssistCtx, AssistHandler}; | 23 | pub(crate) use crate::assist_ctx::{Assist, AssistCtx, AssistHandler}; |
24 | pub use crate::handlers::add_import::auto_import_text_edit; | 24 | pub use crate::handlers::replace_qualified_name_with_use::insert_use_statement; |
25 | 25 | ||
26 | /// Unique identifier of the assist, should not be shown to the user | 26 | /// Unique identifier of the assist, should not be shown to the user |
27 | /// directly. | 27 | /// directly. |
@@ -133,7 +133,7 @@ mod handlers { | |||
133 | mod replace_if_let_with_match; | 133 | mod replace_if_let_with_match; |
134 | mod split_import; | 134 | mod split_import; |
135 | mod remove_dbg; | 135 | mod remove_dbg; |
136 | pub(crate) mod add_import; | 136 | pub(crate) mod replace_qualified_name_with_use; |
137 | mod add_missing_impl_members; | 137 | mod add_missing_impl_members; |
138 | mod move_guard; | 138 | mod move_guard; |
139 | mod move_bounds; | 139 | mod move_bounds; |
@@ -158,7 +158,7 @@ mod handlers { | |||
158 | replace_if_let_with_match::replace_if_let_with_match, | 158 | replace_if_let_with_match::replace_if_let_with_match, |
159 | split_import::split_import, | 159 | split_import::split_import, |
160 | remove_dbg::remove_dbg, | 160 | remove_dbg::remove_dbg, |
161 | add_import::add_import, | 161 | replace_qualified_name_with_use::replace_qualified_name_with_use, |
162 | add_missing_impl_members::add_missing_impl_members, | 162 | add_missing_impl_members::add_missing_impl_members, |
163 | add_missing_impl_members::add_missing_default_members, | 163 | add_missing_impl_members::add_missing_default_members, |
164 | inline_local_variable::inline_local_variable, | 164 | inline_local_variable::inline_local_variable, |