code spell checking - part1 (core)

I've found a code spellchecker, so this is what can be corrected easily. Changes are only affecting comments, readme and a few user-visible strings. So no functional impact expected.
This commit is contained in:
Frank
2023-12-14 03:49:54 +01:00
parent 176158c5ba
commit ced03f1f08
23 changed files with 66 additions and 67 deletions

View File

@@ -35,7 +35,7 @@ void wsEvent(AsyncWebSocket * server, AsyncWebSocketClient * client, AwsEventTyp
{
if (len > 0 && len < 10 && data[0] == 'p') {
// application layer ping/pong heartbeat.
// client-side socket layer ping packets are unresponded (investigate)
// client-side socket layer ping packets are unanswered (investigate)
client->text(F("pong"));
return;
}