From 736b73647989bb51f2f9737b4a2bc27c3f336aed Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Wed, 19 May 2021 20:15:01 +0800 Subject: [PATCH] docs: fix unix socket examples (#10705) --- cli/dts/lib.deno.unstable.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 0fe6df1443..5a3547a6b3 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" * }); * ```