aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2015-12-18 13:16:01 +0100
committerDavid Heinemeier Hansson <david@loudthinking.com>2015-12-18 13:16:01 +0100
commiteb5ca8e16d1ac0112f0c1e479c721c9ae070a51b (patch)
tree9c9cbe602bb2b0dacce8be73e03213c19be69445 /actioncable
parented33d1d641de2daeac329f27d2ee611b612f78de (diff)
downloadrails-eb5ca8e16d1ac0112f0c1e479c721c9ae070a51b.tar.gz
rails-eb5ca8e16d1ac0112f0c1e479c721c9ae070a51b.tar.bz2
rails-eb5ca8e16d1ac0112f0c1e479c721c9ae070a51b.zip
Stray line
Diffstat (limited to 'actioncable')
-rw-r--r--actioncable/README.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/actioncable/README.md b/actioncable/README.md
index 78cef27065..823964343a 100644
--- a/actioncable/README.md
+++ b/actioncable/README.md
@@ -16,7 +16,8 @@ WebSockets open to your application if they use multiple browser tabs or devices
The client of a WebSocket connection is called the consumer.
Each consumer can in turn subscribe to multiple cable channels. Each channel encapsulates
-a logical unit of work, similar to what a controller does in a regular MVC setup. For example, you could have a `ChatChannel` and a `AppearancesChannel`, and a consumer could be subscribed to either
+a logical unit of work, similar to what a controller does in a regular MVC setup. For example,
+you could have a `ChatChannel` and a `AppearancesChannel`, and a consumer could be subscribed to either
or to both of these channels. At the very least, a consumer should be subscribed to one channel.
When the consumer is subscribed to a channel, they act as a subscriber. The connection between