1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-23 18:55:08 +00:00

Ladybird: Fix typos

This commit is contained in:
Nico Weber 2022-12-30 08:15:00 -05:00 committed by Andreas Kling
parent 70885a3dee
commit ac039d93f0
2 changed files with 3 additions and 3 deletions

View file

@ -47,14 +47,14 @@ static ErrorOr<pid_t> launch_browser(DeprecatedString const& socket_path)
static ErrorOr<pid_t> launch_headless_browser(DeprecatedString const& socket_path)
{
auto resouces = DeprecatedString::formatted("{}/res", s_serenity_resource_root);
auto resources = DeprecatedString::formatted("{}/res", s_serenity_resource_root);
auto error_page = DeprecatedString::formatted("{}/res/html/error.html", s_serenity_resource_root);
auto certs = DeprecatedString::formatted("{}/etc/ca_certs.ini", s_serenity_resource_root);
char const* argv[] = {
"headless-browser",
"--resources",
resouces.characters(),
resources.characters(),
"--error-page",
error_page.characters(),
"--certs",