diff options
author | Carlos Precioso <github@precioso.design> | 2024-04-09 21:59:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-09 13:59:54 -0600 |
commit | ecfc6b6413dcfbb490cd6677060d3fcf8870c8b6 (patch) | |
tree | 1a4d03a54048d137b17e36197365fbb69bf14aff | |
parent | 5a3ee6d9af875af032909489c0bed7db11b608dd (diff) |
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.
-rw-r--r-- | cli/tsc/dts/lib.deno.ns.d.ts | 8 |
1 files 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 6df90d294..80c985184 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 |