1
0
mirror of https://github.com/arduino-libraries/ArduinoHttpClient.git synced 2025-08-02 06:06:32 +03:00

Correct typos in comments and documentation

This commit is contained in:
per1234
2021-04-11 21:53:59 -07:00
parent 42d8a204f0
commit e9897fc568
18 changed files with 28 additions and 30 deletions

View File

@ -587,7 +587,7 @@ String HttpClient::responseBody()
}
if (bodyLength > 0 && (unsigned int)bodyLength != response.length()) {
// failure, we did not read in reponse content length bytes
// failure, we did not read in response content length bytes
return String((const char*)NULL);
}
@ -685,7 +685,7 @@ int HttpClient::read()
bool HttpClient::headerAvailable()
{
// clear the currently store header line
// clear the currently stored header line
iHeaderLine = "";
while (!endOfHeadersReached())