From 17bad2b3c0e4a11968d47b91857f793f404aeb70 Mon Sep 17 00:00:00 2001 From: Geoffry Song Date: Tue, 12 Jan 2021 17:30:26 -0800 Subject: [PATCH] Tweak imports_granularity documentation --- Configurations.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Configurations.md b/Configurations.md index 07c8a442d41..e4f84b23082 100644 --- a/Configurations.md +++ b/Configurations.md @@ -1617,7 +1617,7 @@ pub enum Foo {} ## `imports_granularity` -Merge together related imports based on their paths. +How imports should be grouped into `use` statements. Imports will be merged or split to the configured level of granularity. - **Default value**: `Preserve` - **Possible values**: `Preserve`, `Crate`, `Module` @@ -1625,7 +1625,7 @@ Merge together related imports based on their paths. #### `Preserve` (default): -Do not perform any merging and preserve the original structure written by the developer. +Do not change the granularity of any imports and preserve the original structure written by the developer. ```rust use foo::b;