mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 17:15:26 +00:00
Meta: Scale back overly informal user-facing strings
We were getting a little overly memey in some places, so let's scale things back to business-casual. Informal language is fine in comments, commits and debug logs, but let's keep the runtime nice and presentable. :^)
This commit is contained in:
@@ -78,7 +78,7 @@ void Client::handle_request(ByteBuffer raw_request)
|
||||
}
|
||||
|
||||
if (request.method() != HTTP::HttpRequest::Method::GET) {
|
||||
send_error_response(403, "Forbidden, bro!", request);
|
||||
send_error_response(403, "Forbidden!", request);
|
||||
return;
|
||||
}
|
||||
|
||||
@@ -115,7 +115,7 @@ void Client::handle_request(ByteBuffer raw_request)
|
||||
|
||||
auto file = Core::File::construct(real_path);
|
||||
if (!file->open(Core::File::ReadOnly)) {
|
||||
send_error_response(404, "Not found, bro!", request);
|
||||
send_error_response(404, "Not found!", request);
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user