Skip to content

Commit

Permalink
fix: typo in internal server error
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimklug authored and danopernis committed Mar 20, 2024
1 parent 9815487 commit 7c651de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WUI/nhttp/headers.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace {
{ Status::UnprocessableEntity, "Unprocessable Entity" },
{ Status::TooManyRequests, "Too Many Requests" },
{ Status::RequestHeaderFieldsTooLarge, "Request Header Fields Too Large" },
{ Status::InternalServerError, "Infernal Server Error" },
{ Status::InternalServerError, "Internal Server Error" },
{ Status::NotImplemented, "Not Implemented" },
{ Status::ServiceTemporarilyUnavailable, "Service Temporarily Unavailable" },
{ Status::GatewayTimeout, "Gateway Timeout" },
Expand Down

3 comments on commit 7c651de

@DataPocalypse42
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This typo was fun :(

@spetzreborn
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No more infernal errors.

@xtomasnemec
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Add the typo back

Please sign in to comment.