diff options
author | Michael Kurze <michael.codes@pm.me> | 2020-09-01 04:18:06 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-31 22:18:06 -0400 |
commit | b751122e10e4c391ba8d909e96ccf7cf5e0d03a6 (patch) | |
tree | 5d0d781fce616eebd21c1d992dd6cc4818de987a /cli/dts/lib.deno.ns.d.ts | |
parent | 4b5d8bdbaf408042927ef78305f6354721b835fd (diff) |
fix(doc): fix some typos in cli docs (#7292)
Diffstat (limited to 'cli/dts/lib.deno.ns.d.ts')
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 829b31a70..8bbc005e7 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -4,7 +4,7 @@ /// <reference lib="esnext" /> /** Deno provides extra properties on `import.meta`. These are included here - * to ensure that these are still available when using the Deno namepsace in + * to ensure that these are still available when using the Deno namespace in * conjunction with other type libs, like `dom`. */ declare interface ImportMeta { /** A string representation of the fully qualified module URL. */ @@ -814,12 +814,12 @@ declare namespace Deno { * drained. Resolves to the number of bytes read. If the buffer has no * data to return, resolves to EOF (`null`). * - * NOTE: This methods reads bytes sychronously; it's provided for + * NOTE: This methods reads bytes synchronously; it's provided for * compatibility with `Reader` interfaces. */ read(p: Uint8Array): Promise<number | null>; writeSync(p: Uint8Array): number; - /** NOTE: This methods writes bytes sychronously; it's provided for + /** NOTE: This methods writes bytes synchronously; it's provided for * compatibility with `Writer` interface. */ write(p: Uint8Array): Promise<number>; /** Grows the buffer's capacity, if necessary, to guarantee space for |