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:
parent
8d5eb075d8
commit
840b908c0b
2 changed files with 2 additions and 2 deletions
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue