You've already forked ArduinoHttpClient
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:
@ -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())
|
||||
|
Reference in New Issue
Block a user