1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 17:37:37 +00:00

Applications: Convert StringBuilder::appendf() => AK::Format

This commit is contained in:
Andreas Kling 2021-05-07 20:44:27 +02:00
parent 8d5eb075d8
commit 840b908c0b
2 changed files with 2 additions and 2 deletions

View file

@ -164,7 +164,7 @@ String HelpWindow::render(const StringView& key)
if (argc > 0)
markdown_builder.appendff("{} required argument(s):\n", argc);
else
markdown_builder.appendf("No required arguments.\n");
markdown_builder.append("No required arguments.\n");
for (size_t i = 0; i < argc; ++i)
markdown_builder.appendff("- `{}`\n", argnames.at(i).to_string());