Today, chained closure are formatted like this: ```rust let closure = |a| { |b| { println!("{a}{b}"); } }; ``` I personally find it less readable than: ```rust let closure = |a| |b| { println!("{a}{b}"); }; ``` Could it be an option for this formatting?