diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2021-07-25 12:38:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-25 12:38:58 +0200 |
commit | 2f221e5fd507b176590bda52d08e499629ce7761 (patch) | |
tree | c24961857c5e7ccacc3291d22c1e4dabcee3c12b /modules/websocket | |
parent | a0f7f42b842462646281f5c4c9a8db070e034adc (diff) | |
parent | 3564c16cb851e2c5ae9f75d928e2f501ce5e3d6a (diff) |
Merge pull request #50250 from luzpaz/typos
Fix various typos
Diffstat (limited to 'modules/websocket')
-rw-r--r-- | modules/websocket/emws_client.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/websocket/emws_client.cpp b/modules/websocket/emws_client.cpp index 744053b6e2..d3d0066c12 100644 --- a/modules/websocket/emws_client.cpp +++ b/modules/websocket/emws_client.cpp @@ -79,7 +79,7 @@ Error EMWSClient::connect_to_host(String p_host, String p_path, uint16_t p_port, String str = "ws://"; if (p_custom_headers.size()) { - WARN_PRINT_ONCE("Custom headers are not supported in in HTML5 platform."); + WARN_PRINT_ONCE("Custom headers are not supported in HTML5 platform."); } if (p_ssl) { str = "wss://"; |