diff --git a/examples/CaptivePortal/CaptivePortal.ino b/examples/CaptivePortal/CaptivePortal.ino index 69232d875..a813a6465 100644 --- a/examples/CaptivePortal/CaptivePortal.ino +++ b/examples/CaptivePortal/CaptivePortal.ino @@ -23,7 +23,7 @@ class CaptiveRequestHandler : public AsyncWebHandler { void handleRequest(AsyncWebServerRequest* request) { AsyncResponseStream* response = request->beginResponseStream("text/html"); response->print("Captive Portal"); - response->print("

This is out captive portal front page.

"); + response->print("

This is our captive portal front page.

"); response->printf("

You were trying to reach: http://%s%s

", request->host().c_str(), request->url().c_str()); #ifndef CONFIG_IDF_TARGET_ESP32H2 response->printf("

Try opening this link instead

", WiFi.softAPIP().toString().c_str());