summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Supports.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibWeb/CSS/Supports.cpp')
-rw-r--r--Userland/Libraries/LibWeb/CSS/Supports.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/CSS/Supports.cpp b/Userland/Libraries/LibWeb/CSS/Supports.cpp
index eb1a7ea6e6..81793ba47d 100644
--- a/Userland/Libraries/LibWeb/CSS/Supports.cpp
+++ b/Userland/Libraries/LibWeb/CSS/Supports.cpp
@@ -101,9 +101,9 @@ String Supports::Condition::to_string() const
case Type::Not:
return String::formatted("not {}", children.first().to_string());
case Type::And:
- return String::join(" and ", children);
+ return String::join(" and "sv, children);
case Type::Or:
- return String::join(" or ", children);
+ return String::join(" or "sv, children);
}
VERIFY_NOT_REACHED();
}