From 15a20a62da3d70179057cc872b5014c13e25ccae Mon Sep 17 00:00:00 2001 From: Michael Born <8106227+michaelborn@users.noreply.github.com> Date: Wed, 3 Jun 2020 11:18:56 -0400 Subject: [PATCH] Grammar fix: Missing "is" in websocket EN article The english websocket article was missing an "in". I fixed it for you. :) --- 5-network/11-websocket/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/5-network/11-websocket/article.md b/5-network/11-websocket/article.md index eab41b18..b3a3b4b0 100644 --- a/5-network/11-websocket/article.md +++ b/5-network/11-websocket/article.md @@ -15,7 +15,7 @@ let socket = new WebSocket("*!*ws*/!*://javascript.info"); There's also encrypted `wss://` protocol. It's like HTTPS for websockets. ```smart header="Always prefer `wss://`" -The `wss://` protocol not only encrypted, but also more reliable. +The `wss://` protocol is not only encrypted, but also more reliable. That's because `ws://` data is not encrypted, visible for any intermediary. Old proxy servers do not know about WebSocket, they may see "strange" headers and abort the connection.