1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix typos

Fixes some typos.
This commit is contained in:
R.T. Lechow 2018-10-01 19:54:42 -04:00
parent 2334fe8ffa
commit badb910b54
2 changed files with 3 additions and 3 deletions

View file

@ -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)

View file

@ -193,7 +193,7 @@ module ActionCable::StreamTests
end
end
test "subscription confirmation should only be sent out once with muptiple stream_from" do
test "subscription confirmation should only be sent out once with multiple stream_from" do
run_in_eventmachine do
connection = open_connection
expected = { "identifier" => { "channel" => MultiChatChannel.name }.to_json, "type" => "confirm_subscription" }