Skip to content

Commit 4cb06e4

Browse files
fix typo
1 parent 9b96e74 commit 4cb06e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/CaptivePortal/CaptivePortal.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class CaptiveRequestHandler : public AsyncWebHandler {
2323
void handleRequest(AsyncWebServerRequest* request) {
2424
AsyncResponseStream* response = request->beginResponseStream("text/html");
2525
response->print("<!DOCTYPE html><html><head><title>Captive Portal</title></head><body>");
26-
response->print("<p>This is out captive portal front page.</p>");
26+
response->print("<p>This is our captive portal front page.</p>");
2727
response->printf("<p>You were trying to reach: http://%s%s</p>", request->host().c_str(), request->url().c_str());
2828
#ifndef CONFIG_IDF_TARGET_ESP32H2
2929
response->printf("<p>Try opening <a href='http://%s'>this link</a> instead</p>", WiFi.softAPIP().toString().c_str());

0 commit comments

Comments
 (0)