summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-05-19 20:15:01 +0800
committerBert Belder <bertbelder@gmail.com>2021-05-31 16:37:29 +0200
commit736b73647989bb51f2f9737b4a2bc27c3f336aed (patch)
tree7bba4e10ea31ff5ff6f8629c5b340650283abba5 /cli
parent7a751b813539f3048e56022248aeef42bb73b3ee (diff)
docs: fix unix socket examples (#10705)
Diffstat (limited to 'cli')
-rw-r--r--cli/dts/lib.deno.unstable.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts
index 0fe6df144..5a3547a6b 100644
--- a/cli/dts/lib.deno.unstable.d.ts
+++ b/cli/dts/lib.deno.unstable.d.ts
@@ -929,7 +929,7 @@ declare namespace Deno {
*
* ```ts
* const listener = Deno.listenDatagram({
- * address: "/foo/bar.sock",
+ * path: "/foo/bar.sock",
* transport: "unixpacket"
* });
* ```