diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2020-10-19 14:54:16 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2020-10-19 14:54:16 +0100 |
commit | 18775643f6078329e4063dd2fbc60acda901fbf0 (patch) | |
tree | 5c21b293726cc0062532f2a8785efe460937711f | |
parent | 3b4d0e2464c78fc9e341326843c5c84919a9175e (diff) | |
parent | 4fbb602b2d3e83c0414a4f140b9a5737b62bfcc2 (diff) |
Merge #6283
6283: Minor, rename feature r=matklad a=matklad
bors r+
🤖
Co-authored-by: Aleksey Kladov <[email protected]>
-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, |