mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 13:07:46 +00:00
Everywhere: Convert a handful of String::format() => formatted()
This commit is contained in:
parent
c90b7881a7
commit
c71807a3fc
23 changed files with 24 additions and 24 deletions
|
@ -265,7 +265,7 @@ int main(int argc, char** argv)
|
|||
do {
|
||||
output_name = url.host();
|
||||
if (i > -1)
|
||||
output_name = String::format("%s.%d", output_name.characters(), i);
|
||||
output_name = String::formatted("{}.{}", output_name, i);
|
||||
++i;
|
||||
} while (Core::File::exists(output_name));
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue