From 357ff7bb13208a837064199f3e57b74e46da0755 Mon Sep 17 00:00:00 2001 From: David Sherret Date: Mon, 10 Jan 2022 09:22:41 -0500 Subject: [PATCH] docs: update `writeSync` docs to refer to `writeAllSync` in deno.land/std instead of `Deno.writeAllSync` (#13314) --- cli/dts/lib.deno.ns.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 914c63b246..5a08575ffd 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -870,7 +870,7 @@ declare namespace Deno { * * Returns the number of bytes written. This function is one of the lowest * level APIs and most users should not work with this directly, but rather use - * Deno.writeAllSync() instead. + * `writeAllSync()` from https://deno.land/std/streams/conversion.ts instead. * * **It is not guaranteed that the full buffer will be written in a single * call.**