mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
Everywhere: Fix incorrect uses of String::format and StringBuilder::appendf
These changes are arbitrarily divided into multiple commits to make it easier to find potentially introduced bugs with git bisect.
This commit is contained in:
parent
099b83fd28
commit
6d97b623cd
Notes:
sideshowbarker
2024-07-18 23:55:59 +09:00
Author: https://github.com/ccapitalK
Commit: 6d97b623cd
Pull-request: https://github.com/SerenityOS/serenity/pull/4900
9 changed files with 10 additions and 10 deletions
|
@ -34,7 +34,7 @@ String generate_only_additions(const String& text)
|
|||
{
|
||||
auto lines = text.split('\n', true); // Keep empty
|
||||
StringBuilder builder;
|
||||
builder.appendf("@@ -1,%zu +1,%zu @@\n", lines.size());
|
||||
builder.appendf("@@ -0,0 +1,%zu @@\n", lines.size());
|
||||
for (const auto& line : lines) {
|
||||
builder.appendf("+%s\n", line.characters());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue