We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
In 0.8.4,
fn foo() { let f = |x| {{x}}; }
will be formatted to
fn foo() { let f = |x| { x }; }
and then
fn foo() { let f = |x| x; }