Skip to content

Commit afebe47

Browse files
committed
Fix a typo in a comment
1 parent 53b1852 commit afebe47

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/ESP8266WebServer/src/Parsing-impl.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ bool ESP8266WebServerTemplate<ServerType>::_parseRequest(ClientType& client) {
147147
while(1){
148148
req = client.readStringUntil('\r');
149149
client.readStringUntil('\n');
150-
if (req.isEmpty()) break;//no moar headers
150+
if (req.isEmpty()) break; //no more headers
151151
int headerDiv = req.indexOf(':');
152152
if (headerDiv == -1){
153153
break;

0 commit comments

Comments
 (0)