aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--guides/source/action_cable_overview.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md
index 26e07348f4..b18b3c3046 100644
--- a/guides/source/action_cable_overview.md
+++ b/guides/source/action_cable_overview.md
@@ -85,8 +85,8 @@ or deauthorized).
### Channels
A channel encapsulates a logical unit of work, similar to what a controller does in a
regular MVC setup.
-You should first define a parent `ApplicationCable::Channel` class in Ruby, which
-encapsulates shared logic between your channels.
+By default, Rails creates a parent `ApplicationCable::Channel` class for encapsulating
+shared logic between your channels.
#### Parent Channel Setup
```ruby