diff options
author | Aleksey Kladov <[email protected]> | 2020-10-19 14:53:48 +0100 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-10-19 14:53:48 +0100 |
commit | 4fbb602b2d3e83c0414a4f140b9a5737b62bfcc2 (patch) | |
tree | 5c21b293726cc0062532f2a8785efe460937711f /crates | |
parent | 3b4d0e2464c78fc9e341326843c5c84919a9175e (diff) |
Minor, rename feature
Diffstat (limited to 'crates')
-rw-r--r-- | crates/assists/src/handlers/auto_import.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/assists/src/handlers/auto_import.rs b/crates/assists/src/handlers/auto_import.rs index 4a7059c83..ccf575e84 100644 --- a/crates/assists/src/handlers/auto_import.rs +++ b/crates/assists/src/handlers/auto_import.rs | |||
@@ -6,7 +6,7 @@ use crate::{ | |||
6 | AssistContext, AssistId, AssistKind, Assists, GroupLabel, | 6 | AssistContext, AssistId, AssistKind, Assists, GroupLabel, |
7 | }; | 7 | }; |
8 | 8 | ||
9 | // Feature: Import Insertion | 9 | // Feature: Auto Import |
10 | // | 10 | // |
11 | // Using the `auto-import` assist it is possible to insert missing imports for unresolved items. | 11 | // Using the `auto-import` assist it is possible to insert missing imports for unresolved items. |
12 | // When inserting an import it will do so in a structured manner by keeping imports grouped, | 12 | // When inserting an import it will do so in a structured manner by keeping imports grouped, |