mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 10:48:41 +00:00
Userland: Prefer _short_string over String::from_utf8_short_string
This user-defined literal is a strictly equivalent but shorter alias to `String::from_utf8_short_string`.
This commit is contained in:
committed by
Andreas Kling
parent
66645cdc94
commit
a5edc9cdfc
@@ -1142,7 +1142,7 @@ WebIDL::ExceptionOr<void> BrowsingContext::navigate(
|
||||
} else {
|
||||
// Otherwise let navigation id be the result of generating a random UUID. [UUID]
|
||||
// FIXME: Generate a UUID.
|
||||
navigation_id = String::from_utf8_short_string("FIXME"sv);
|
||||
navigation_id = "FIXME"_short_string;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user