diff options
author | Robin Dupret <robin.dupret@gmail.com> | 2018-11-10 11:27:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-10 11:27:07 +0100 |
commit | ef4f5ef69b5a50c897bbb17f6b36b729dff12e6c (patch) | |
tree | 73e8dae30a65d8fc33f05149d0a2dc52861b59cc /guides/source | |
parent | 059d4202de03b0caecab7afba5d06f4d9ebfb811 (diff) | |
parent | 9a7f95c229fe6f1ac0251488d337788bfa99b308 (diff) | |
download | rails-ef4f5ef69b5a50c897bbb17f6b36b729dff12e6c.tar.gz rails-ef4f5ef69b5a50c897bbb17f6b36b729dff12e6c.tar.bz2 rails-ef4f5ef69b5a50c897bbb17f6b36b729dff12e6c.zip |
Merge pull request #34373 from shiroginne/master
Fix typo for Action Cable Overview doc
[Eileen M. Uchitelle]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/action_cable_overview.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md index e6c0ae31a8..2f602c3e0a 100644 --- a/guides/source/action_cable_overview.md +++ b/guides/source/action_cable_overview.md @@ -242,9 +242,9 @@ WebNotificationsChannel.broadcast_to( ``` The `WebNotificationsChannel.broadcast_to` call places a message in the current -subscription adapter (by default `redis` for production and `async` for development and -test environments)'s pubsub queue under a separate broadcasting name for each user. -For a user with an ID of 1, the broadcasting name would be `web_notifications:1`. +subscription adapter's pubsub queue under a separate broadcasting name for each user. +The default pubsub queue for Action Cable is `redis` in production and `async` in development and +test environments. For a user with an ID of 1, the broadcasting name would be `web_notifications:1`. The channel has been instructed to stream everything that arrives at `web_notifications:1` directly to the client by invoking the `received` |