Skip to content

Commit 25f3a84

Browse files
author
Jeroen88
committed
Fix Travis formatting spacing for example ReuseConnectionV2.ino
1 parent 3981b18 commit 25f3a84

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

libraries/ESP8266HTTPClient/examples/ReuseConnectionV2/ReuseConnectionV2.ino

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void setup() {
4747
}
4848

4949
void loop() {
50-
for(int i = 0; i < 10; i++) {
50+
for (int i = 0; i < 10; i++) {
5151
Serial.printf("Reuse connection example, GET url for the %d time\n", i + 1);
5252
int httpCode = http.GET();
5353
if (httpCode > 0) {
@@ -72,5 +72,5 @@ void loop() {
7272
http.end();
7373

7474
Serial.println("Done testing, now wait forever");
75-
for(;;) delay(100); // Wait forever
75+
for (;;) delay(100); // Wait forever
7676
}

0 commit comments

Comments
 (0)