Skip to content
This repository has been archived by the owner on May 5, 2020. It is now read-only.

Small updates to Websocket.elm comments #24

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/WebSocket.elm
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ effect module WebSocket where { command = MyCmd, subscription = MySub } exposing
{-| Web sockets make it cheaper to talk to your servers.

Connecting to a server takes some time, so with web sockets, you make that
connection once and then keep using. The major benefits of this are:
connection once and then keep using it. The major benefits of this are:

1. It faster to send messages. No need to do a bunch of work for every single
1. It is faster to send messages. No need to do a bunch of work for every single
message.

2. The server can push messages to you. With normal HTTP you would have to
Expand Down