From ecfc6b6413dcfbb490cd6677060d3fcf8870c8b6 Mon Sep 17 00:00:00 2001 From: Carlos Precioso Date: Tue, 9 Apr 2024 21:59:54 +0200 Subject: [PATCH] docs: Fix typo "discreet" to "discrete" (#23290) Changes `discreet` in the documentation for `discrete` "Discreet" means careful to avoid being noticed, "discrete" means separate parts, and is what the documentation refers to. --- cli/tsc/dts/lib.deno.ns.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cli/tsc/dts/lib.deno.ns.d.ts b/cli/tsc/dts/lib.deno.ns.d.ts index 6df90d294a..80c9851840 100644 --- a/cli/tsc/dts/lib.deno.ns.d.ts +++ b/cli/tsc/dts/lib.deno.ns.d.ts @@ -2283,7 +2283,7 @@ declare namespace Deno { /** The Deno abstraction for reading and writing files. * * This is the most straight forward way of handling files within Deno and is - * recommended over using the discreet functions within the `Deno` namespace. + * recommended over using the discrete functions within the `Deno` namespace. * * ```ts * using file = await Deno.open("/foo/bar.txt", { read: true }); @@ -2786,7 +2786,7 @@ declare namespace Deno { */ export const stdin: Reader & ReaderSync & Closer & { /** - * The resource ID assigned to `stdin`. This can be used with the discreet + * The resource ID assigned to `stdin`. This can be used with the discrete * I/O functions in the `Deno` namespace. * * @deprecated This will be soft-removed in Deno 2.0. See the @@ -2834,7 +2834,7 @@ declare namespace Deno { */ export const stdout: Writer & WriterSync & Closer & { /** - * The resource ID assigned to `stdout`. This can be used with the discreet + * The resource ID assigned to `stdout`. This can be used with the discrete * I/O functions in the `Deno` namespace. * * @deprecated This will be soft-removed in Deno 2.0. See the @@ -2868,7 +2868,7 @@ declare namespace Deno { */ export const stderr: Writer & WriterSync & Closer & { /** - * The resource ID assigned to `stderr`. This can be used with the discreet + * The resource ID assigned to `stderr`. This can be used with the discrete * I/O functions in the `Deno` namespace. * * @deprecated This will be soft-removed in Deno 2.0. See the