mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-06 16:45:03 +00:00
LibWeb: Convert a bunch of String::format() => String::formatted()
This commit is contained in:
@@ -151,7 +151,7 @@ public:
|
||||
{
|
||||
if (is_auto())
|
||||
return "[auto]";
|
||||
return String::format("[%g %s]", m_value, unit_name());
|
||||
return String::formatted("[{} {}]", m_value, unit_name());
|
||||
}
|
||||
|
||||
bool operator==(const Length& other) const
|
||||
|
||||
Reference in New Issue
Block a user