Skip to content

Commit 26f7feb

Browse files
committed
chore: grammar
1 parent 686b977 commit 26f7feb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: libraries/WebServer/examples/Filters/Filters.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ WebServer server(80);
1717

1818
const int led = 13;
1919

20-
// ON_STA_FILTER - Accept requests coming only from the STA interface
20+
// ON_STA_FILTER - Only accept requests coming from STA interface
2121
bool ON_STA_FILTER(WebServer &server) {
2222
return WiFi.STA.hasIP() && WiFi.STA.localIP() == server.client().localIP();
2323
}
2424

25-
// ON_AP_FILTER - Accept requests coming only from the AP interface
25+
// ON_AP_FILTER - Only accept requests coming from AP interface
2626
bool ON_AP_FILTER(WebServer &server) {
2727
return WiFi.AP.hasIP() && WiFi.AP.localIP() == server.client().localIP();
2828
}

0 commit comments

Comments
 (0)