summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Sherret <dsherret@users.noreply.github.com>2022-01-10 09:22:41 -0500
committerGitHub <noreply@github.com>2022-01-10 09:22:41 -0500
commit994ac6d49b4f0be144acaaebebb81ebed7d1e744 (patch)
treeafd28c77a8c9a7a25cb0d1af93919dc7e420e733
parentea86c0818ab6bf15d648726f0b18204a1dc83709 (diff)
docs: update `writeSync` docs to refer to `writeAllSync` in deno.land/std instead of `Deno.writeAllSync` (#13314)
-rw-r--r--cli/dts/lib.deno.ns.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts
index 03ba3d898..e23f44d9a 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.**