mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 20:37:35 +00:00
LibWeb: Convert StringBuilder::appendf() => AK::Format
This commit is contained in:
parent
eb05931ab5
commit
c7e9b6d00f
2 changed files with 2 additions and 6 deletions
|
@ -243,7 +243,7 @@ void dump_tree(StringBuilder& builder, const Layout::Node& layout_node, bool sho
|
|||
for (auto& property : properties) {
|
||||
for (size_t i = 0; i < indent; ++i)
|
||||
builder.append(" ");
|
||||
builder.appendf(" (%s: %s)\n", property.name.characters(), property.value.characters());
|
||||
builder.appendff(" ({}: {})\n", property.name, property.value);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue