diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-05-19 20:15:01 +0800 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2021-05-31 16:37:29 +0200 |
commit | 736b73647989bb51f2f9737b4a2bc27c3f336aed (patch) | |
tree | 7bba4e10ea31ff5ff6f8629c5b340650283abba5 /cli | |
parent | 7a751b813539f3048e56022248aeef42bb73b3ee (diff) |
docs: fix unix socket examples (#10705)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 2 |
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" * }); * ``` |