From 4cb06e48210ac90e3c85ff00a0192e3f7b408e50 Mon Sep 17 00:00:00 2001 From: Thijs Triemstra Date: Tue, 21 Jan 2025 19:07:27 +0100 Subject: [PATCH] fix typo --- examples/CaptivePortal/CaptivePortal.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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());