Skip to content

Commit 459dd98

Browse files
authored
fix(WiFi): fixes a type in the commentaries
1 parent 787f27f commit 459dd98

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: libraries/WiFi/examples/WiFiMultiAdvanced/WiFiMultiAdvanced.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ bool testConnection(){
1515
HTTPClient http;
1616
http.begin("http://www.espressif.com");
1717
int httpCode = http.GET();
18-
// we expect to get a 301 because it will ask to use HTTPS intead of HTTP
18+
// we expect to get a 301 because it will ask to use HTTPS instead of HTTP
1919
if (httpCode == HTTP_CODE_MOVED_PERMANENTLY) return true;
2020
return false;
2121
}

0 commit comments

Comments
 (0)