1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-04-25 20:02:37 +03:00

HTTPClient example: Fix typo (#8819)

fix from [HTTP} to [HTTP]
This commit is contained in:
koliwbr 2023-01-20 15:47:42 +01:00 committed by GitHub
parent 56107fb1f9
commit bed2fa339d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,7 +67,7 @@ void loop() {
http.end(); http.end();
} else { } else {
Serial.printf("[HTTP} Unable to connect\n"); Serial.println("[HTTP] Unable to connect");
} }
} }