diff options
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 0b9876865..d33eb8a0b 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -1226,7 +1226,7 @@ declare namespace Deno { export function rename(oldpath: string, newpath: string): Promise<void>; /** Synchronously reads and returns the entire contents of a file as utf8 - * encoded string. Reading a directory returns an empty string. + * encoded string. Reading a directory throws an error. * * ```ts * const data = Deno.readTextFileSync("hello.txt"); @@ -1237,7 +1237,7 @@ declare namespace Deno { export function readTextFileSync(path: string | URL): string; /** Asynchronously reads and returns the entire contents of a file as utf8 - * encoded string. Reading a directory returns an empty string. + * encoded string. Reading a directory throws an error. * * ```ts * const data = await Deno.readTextFile("hello.txt"); |