mirror of
https://github.com/denoland/deno.git
synced 2025-03-03 09:31:22 -05:00
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.
This commit is contained in:
parent
5a3ee6d9af
commit
ecfc6b6413
1 changed files with 4 additions and 4 deletions
8
cli/tsc/dts/lib.deno.ns.d.ts
vendored
8
cli/tsc/dts/lib.deno.ns.d.ts
vendored
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue