summaryrefslogtreecommitdiff
path: root/ext/websocket/lib.deno_websocket.d.ts
diff options
context:
space:
mode:
authorGeert-Jan Zwiers <34610306+GJZwiers@users.noreply.github.com>2022-02-22 20:41:59 +0100
committerGitHub <noreply@github.com>2022-02-22 20:41:59 +0100
commit6613a312b160374ba7a86c3b88fb67c0fe4247e0 (patch)
tree6ee0ccf2a24f705fc37543e80d06400704fe8627 /ext/websocket/lib.deno_websocket.d.ts
parent877c0b724e57211c63505d932ebf6f1051a9c2f1 (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.ts2
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[]);