From bf289ee54e0d7e69ca1e99624fbb5a31babd2f80 Mon Sep 17 00:00:00 2001 From: Carlos Galarza Date: Sat, 10 Apr 2021 16:51:02 -0500 Subject: [PATCH] docs: fix typo (#497) --- docs/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/index.d.ts b/docs/index.d.ts index 40797aa..7b259f7 100644 --- a/docs/index.d.ts +++ b/docs/index.d.ts @@ -44,7 +44,7 @@ export interface WebSocket { /** Sends a message. Make sure to check getBufferedAmount() before sending. Returns true for success, false for built up backpressure that will drain when time is given. * Returning false does not mean nothing was sent, it only means backpressure was built up. This you can check by calling getBufferedAmount() afterwards. * - * Make sure you properly understand the contept of backpressure. Check the backpressure example file. + * Make sure you properly understand the concept of backpressure. Check the backpressure example file. */ send(message: RecognizedString, isBinary?: boolean, compress?: boolean) : boolean;