I am not totally sure if this is a bug or if there is any reason for it but i have some rust code as follows: ``` let var = funct().0.0; ``` When i run `rustfmt` it is adding an extra space to that line so it becomes: ``` let var = funct().0 .0; ``` For reference, in this example, `funct` is something as: ``` fn funct() -> (type1, type2) ``` and `type1` is something as: ``` struct type1(u32); ```