You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rustfmt considers it correctly formatted under Rust 1.79, but will remove the space before // WORLD under Rust 1.80-beta3 (and nightly)
This is caused by unicode-width 0.1.13, which changed the predicted widths of a lot of Unicode characters, including emoji. The new version is more accurate, but these changes have not been made in a way that guarantees any kind of stability. The issue I have filed asks for such an API.
In the meantime, should rust/rustfmt pin to 0.1.2?