Skip to content

Commit 3df4990

Browse files
committed
Spacing
1 parent 0009b3b commit 3df4990

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

examples/DweetPost/DweetPost.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ void loop() {
6767

6868
// read the status code and body of the response
6969
int statusCode = client.responseStatusCode();
70-
String response = client.responseBody();
70+
String response = client.responseBody();
7171

7272
Serial.print("Status code: ");
7373
Serial.println(statusCode);

examples/PostWithHeaders/PostWithHeaders.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ void loop() {
6565

6666
// read the status code and body of the response
6767
int statusCode = client.responseStatusCode();
68-
String response = client.responseBody();
68+
String response = client.responseBody();
6969

7070
Serial.print("Status code: ");
7171
Serial.println(statusCode);

examples/SimpleDelete/SimpleDelete.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ void loop() {
5656

5757
// read the status code and body of the response
5858
int statusCode = client.responseStatusCode();
59-
String response = client.responseBody();
59+
String response = client.responseBody();
6060

6161
Serial.print("Status code: ");
6262
Serial.println(statusCode);

examples/SimpleGet/SimpleGet.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ void loop() {
5151

5252
// read the status code and body of the response
5353
int statusCode = client.responseStatusCode();
54-
String response = client.responseBody();
54+
String response = client.responseBody();
5555

5656
Serial.print("Status code: ");
5757
Serial.println(statusCode);

examples/SimplePost/SimplePost.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void loop() {
5454

5555
// read the status code and body of the response
5656
int statusCode = client.responseStatusCode();
57-
String response = client.responseBody();
57+
String response = client.responseBody();
5858

5959
Serial.print("Status code: ");
6060
Serial.println(statusCode);

examples/SimplePut/SimplePut.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ void loop() {
5454

5555
// read the status code and body of the response
5656
int statusCode = client.responseStatusCode();
57-
String response = client.responseBody();
57+
String response = client.responseBody();
5858

5959
Serial.print("Status code: ");
6060
Serial.println(statusCode);

examples/SimpleWebSocket/SimpleWebSocket.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ void loop() {
7777
}
7878

7979
Serial.println("disconnected");
80-
}
80+
}

0 commit comments

Comments
 (0)