Skip to content

Commit ec51bf4

Browse files
committed
Fixed a typo
1 parent cf7fd27 commit ec51bf4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/HTTPConnection.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ void HTTPConnection::readLine(int lengthLimit) {
309309
if (newChar == '\n') {
310310
HTTPS_LOGW("Line without \\r\\n (got only \\n). FID=%d", _socket);
311311
} else {
312-
HTTPS_LOGW("Recieved invalid character (%d) in headedrs FID=%d", (int)newChar, _socket);
312+
HTTPS_LOGW("Recieved an invalid character (%d) in headers FID=%d", (int)newChar, _socket);
313313
}
314314
raiseError(400, "Bad Request");
315315
return;

0 commit comments

Comments
 (0)