瀏覽代碼

LibWeb: Fix a tiny appendff() format issue

This would've just left the colour on for a few characters, nothing _too_ bad.
AnotherTest 4 年之前
父節點
當前提交
c989e55195
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      Userland/Libraries/LibWeb/Dump.cpp

+ 1 - 1
Userland/Libraries/LibWeb/Dump.cpp

@@ -143,7 +143,7 @@ void dump_tree(StringBuilder& builder, const Layout::Node& layout_node, bool sho
     }
 
     if (!is<Layout::Box>(layout_node)) {
-        builder.appendff("{}{}{} <{}{}{}>",
+        builder.appendff("{}{}{} <{}{}{}{}>",
             nonbox_color_on,
             layout_node.class_name().substring_view(13),
             color_off,