From c0b850ab9227a8ca6eef6d14cc5e47cf6d5fa51a Mon Sep 17 00:00:00 2001 From: Akhil G Krishnan Date: Thu, 3 Aug 2023 19:30:25 +0530 Subject: [PATCH] [skip ci] Added missing parathesis in guide --- guides/source/action_cable_overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/action_cable_overview.md b/guides/source/action_cable_overview.md index 13062d336d7f2..8cb2884d9cb5c 100644 --- a/guides/source/action_cable_overview.md +++ b/guides/source/action_cable_overview.md @@ -531,7 +531,7 @@ const chatChannel = consumer.subscriptions.create({ channel: "ChatChannel", room received(data) { // data => { sent_by: "Paul", body: "This is a cool chat app." } } -} +}) chatChannel.send({ sent_by: "Paul", body: "This is a cool chat app." }) ```