Grammar fix: Missing "is" in websocket EN article
The english websocket article was missing an "in". I fixed it for you. :)
This commit is contained in:
parent
ecfcff24a4
commit
15a20a62da
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ let socket = new WebSocket("*!*ws*/!*://javascript.info");
|
||||||
There's also encrypted `wss://` protocol. It's like HTTPS for websockets.
|
There's also encrypted `wss://` protocol. It's like HTTPS for websockets.
|
||||||
|
|
||||||
```smart header="Always prefer `wss://`"
|
```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.
|
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.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue