In this struct: ```rust struct Test { /// foo #[serde(default)] pub join: Vec<String>, #[serde(default)] pub tls: bool, } ``` Both fields have the same attribute but they're formatted differently, because of the comment line in the first one.