Skip to content

Commit

Permalink
Fix a typo in a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakCodes committed Jul 10, 2020
1 parent 53b1852 commit afebe47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/ESP8266WebServer/src/Parsing-impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ bool ESP8266WebServerTemplate<ServerType>::_parseRequest(ClientType& client) {
while(1){
req = client.readStringUntil('\r');
client.readStringUntil('\n');
if (req.isEmpty()) break;//no moar headers
if (req.isEmpty()) break; //no more headers
int headerDiv = req.indexOf(':');
if (headerDiv == -1){
break;
Expand Down

0 comments on commit afebe47

Please sign in to comment.