diff --git a/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.cpp b/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.cpp index 0fd67c9131..2111ee9978 100644 --- a/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.cpp +++ b/Userland/Libraries/LibWeb/CSS/Parser/ComponentValue.cpp @@ -41,10 +41,10 @@ String ComponentValue::to_debug_string() const return String::formatted("Token: {}", token.to_debug_string()); }, [](NonnullRefPtr const& block) { - return String::formatted("Function: {}", block->to_string()); + return String::formatted("Block: {}", block->to_string()); }, [](NonnullRefPtr const& function) { - return String::formatted("Block: {}", function->to_string()); + return String::formatted("Function: {}", function->to_string()); }); }