From 99f125a6bc0114599bc8d5c99513d2a75cd69329 Mon Sep 17 00:00:00 2001 From: Takayuki Nakata Date: Wed, 25 Sep 2019 15:54:06 +0900 Subject: [PATCH] Fix typo, shoud -> should [ci skip] --- guides/source/testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/testing.md b/guides/source/testing.md index 41bc54b924..a8b1b2c2c9 100644 --- a/guides/source/testing.md +++ b/guides/source/testing.md @@ -1858,7 +1858,7 @@ class ProductTest < ActionCable::TestCase end ``` -If you want to test the broadcasting made with `Channel.broadcast_to`, you shoud use +If you want to test the broadcasting made with `Channel.broadcast_to`, you should use `Channel.broadcasting_for` to generate an underlying stream name: ```ruby