aboutsummaryrefslogtreecommitdiff
path: root/crates/assists/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'crates/assists/src/lib.rs')
-rw-r--r--crates/assists/src/lib.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/crates/assists/src/lib.rs b/crates/assists/src/lib.rs
index 14834480a..2e0d191a6 100644
--- a/crates/assists/src/lib.rs
+++ b/crates/assists/src/lib.rs
@@ -152,6 +152,7 @@ mod handlers {
152 mod raw_string; 152 mod raw_string;
153 mod remove_dbg; 153 mod remove_dbg;
154 mod remove_mut; 154 mod remove_mut;
155 mod remove_unused_param;
155 mod reorder_fields; 156 mod reorder_fields;
156 mod replace_if_let_with_match; 157 mod replace_if_let_with_match;
157 mod replace_let_with_if_let; 158 mod replace_let_with_if_let;
@@ -198,6 +199,7 @@ mod handlers {
198 raw_string::remove_hash, 199 raw_string::remove_hash,
199 remove_dbg::remove_dbg, 200 remove_dbg::remove_dbg,
200 remove_mut::remove_mut, 201 remove_mut::remove_mut,
202 remove_unused_param::remove_unused_param,
201 reorder_fields::reorder_fields, 203 reorder_fields::reorder_fields,
202 replace_if_let_with_match::replace_if_let_with_match, 204 replace_if_let_with_match::replace_if_let_with_match,
203 replace_let_with_if_let::replace_let_with_if_let, 205 replace_let_with_if_let::replace_let_with_if_let,