style(traverse): remove excess line break (#5603)

This commit is contained in:
overlookmotel 2024-09-08 08:57:01 +00:00
parent 63a830e08c
commit 97e99bd167

View file

@ -526,7 +526,6 @@ fn create_uid_name_base(name: &str) -> CompactString {
}
// SAFETY: We started with a valid UTF8 `&str` and have only trimmed off ASCII characters,
// so remainder must still be valid UTF8
let name = unsafe { str::from_utf8_unchecked(bytes) };
// Create `CompactString` prepending name with `_`, and with 1 byte excess capacity.