Formatting this ```rust /// rustdoc comment use a::{a, b, c}; ``` with `imports_granularity = "Item"` results in this: ```rust /// rustdoc comment use a::a; /// rustdoc comment use a::b; /// rustdoc comment use a::c; ``` The rustdoc comment should appear once.
Formatting this
with
imports_granularity = "Item"results in this:The rustdoc comment should appear once.