diff options
author | Geert-Jan Zwiers <34610306+GJZwiers@users.noreply.github.com> | 2022-02-22 20:41:59 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-22 20:41:59 +0100 |
commit | 6613a312b160374ba7a86c3b88fb67c0fe4247e0 (patch) | |
tree | 6ee0ccf2a24f705fc37543e80d06400704fe8627 /ext/websocket/lib.deno_websocket.d.ts | |
parent | 877c0b724e57211c63505d932ebf6f1051a9c2f1 (diff) |
docs: code example to `structuredClone`, `CompressionStream`, `DecompressionStream` (#13719)
Co-authored-by: Bartek IwaĆczuk <biwanczuk@gmail.com>
Diffstat (limited to 'ext/websocket/lib.deno_websocket.d.ts')
-rw-r--r-- | ext/websocket/lib.deno_websocket.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/websocket/lib.deno_websocket.d.ts b/ext/websocket/lib.deno_websocket.d.ts index af9026d41..8b79fa5cc 100644 --- a/ext/websocket/lib.deno_websocket.d.ts +++ b/ext/websocket/lib.deno_websocket.d.ts @@ -37,7 +37,7 @@ interface WebSocketEventMap { /** * Provides the API for creating and managing a WebSocket connection to a server, as well as for sending and receiving data on the connection. * - * If you are looking to create a WebSocket server, please take a look at Deno.upgradeWebSocket(). + * If you are looking to create a WebSocket server, please take a look at `Deno.upgradeWebSocket()`. */ declare class WebSocket extends EventTarget { constructor(url: string, protocols?: string | string[]); |