diff options
author | Javier Cuevas <javi@diacode.com> | 2016-10-13 18:02:52 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-13 18:02:52 +0200 |
commit | 854a1be5fa085270b5049188caffd71da9e5ccfa (patch) | |
tree | 358e5195cace72e9a537d0d80b63cf43df218d02 /guides/source | |
parent | 3de12286e6d79516831fa03be9e88a1db98b6234 (diff) | |
download | rails-854a1be5fa085270b5049188caffd71da9e5ccfa.tar.gz rails-854a1be5fa085270b5049188caffd71da9e5ccfa.tar.bz2 rails-854a1be5fa085270b5049188caffd71da9e5ccfa.zip |
Suggested edits
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 99173982b8..3716aa0ecb 100644 --- a/guides/source/action_cable_overview.md +++ b/guides/source/action_cable_overview.md @@ -240,9 +240,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 & test)'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 (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`. The channel has been instructed to stream everything that arrives at `web_notifications:1` directly to the client by invoking the `received` |