From f0bf61881e6fd16d400b13395eab783208a0f042 Mon Sep 17 00:00:00 2001 From: santosh Date: Tue, 3 Jul 2018 13:29:21 -0700 Subject: [PATCH] Typo : Need "must" instead of "much" word in Device Communication doc page Summary: Closes https://github.com/facebook/Sonar/pull/124 Differential Revision: D8727053 Pulled By: passy fbshipit-source-id: 3609e70af254e2aee7e9e9400ebf631c6198a382 --- docs/communicating.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/communicating.md b/docs/communicating.md index 33c6596af..d0f19b63f 100644 --- a/docs/communicating.md +++ b/docs/communicating.md @@ -4,7 +4,7 @@ title: Device Communication sidebar_label: Device Communication --- -To start communicating with a client your plugin must implement the init function. Once this function has been called the active client can also be accessed via `this.client`. This `id` of the plugin in JavaScript much match the native plugin `id` to allow for them to communicate. +To start communicating with a client your plugin must implement the init function. Once this function has been called the active client can also be accessed via `this.client`. This `id` of the plugin in JavaScript must match the native plugin `id` to allow for them to communicate. ```javascript class extends SonarPlugin {