aboutsummaryrefslogtreecommitdiffstats
path: root/actioncable/lib
diff options
context:
space:
mode:
authorR.T. Lechow <rtlechow@gmail.com>2018-10-01 19:54:42 -0400
committerR.T. Lechow <rtlechow@gmail.com>2018-10-01 19:56:50 -0400
commitbadb910b548592e4496d1eb132c2f16fb93765f5 (patch)
tree1ea975650ec1e4a5924ed4e43e7b8a42f60a4500 /actioncable/lib
parent2334fe8ffab7aa67504ae4a6b483f1a914b415bb (diff)
downloadrails-badb910b548592e4496d1eb132c2f16fb93765f5.tar.gz
rails-badb910b548592e4496d1eb132c2f16fb93765f5.tar.bz2
rails-badb910b548592e4496d1eb132c2f16fb93765f5.zip
Fix typos
Fixes some typos.
Diffstat (limited to 'actioncable/lib')
-rw-r--r--actioncable/lib/action_cable/channel/test_case.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actioncable/lib/action_cable/channel/test_case.rb b/actioncable/lib/action_cable/channel/test_case.rb
index a26051d687..dd2762ccd0 100644
--- a/actioncable/lib/action_cable/channel/test_case.rb
+++ b/actioncable/lib/action_cable/channel/test_case.rb
@@ -131,7 +131,7 @@ module ActionCable
#
# == Specifying connection identifiers
#
- # You need to set up your connection manually to privide values for the identifiers.
+ # You need to set up your connection manually to provide values for the identifiers.
# To do this just use:
#
# stub_connection(user: users[:john])
@@ -212,7 +212,7 @@ module ActionCable
@connection = ConnectionStub.new(identifiers)
end
- # Subsribe to the channel under test. Optionally pass subscription parameters as a Hash.
+ # Subscribe to the channel under test. Optionally pass subscription parameters as a Hash.
def subscribe(params = {})
@connection ||= stub_connection
@subscription = self.class.channel_class.new(connection, CHANNEL_IDENTIFIER, params.with_indifferent_access)