From b751122e10e4c391ba8d909e96ccf7cf5e0d03a6 Mon Sep 17 00:00:00 2001 From: Michael Kurze Date: Tue, 1 Sep 2020 04:18:06 +0200 Subject: [PATCH] fix(doc): fix some typos in cli docs (#7292) --- cli/dts/lib.deno.ns.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index 829b31a70b..8bbc005e76 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -4,7 +4,7 @@ /// /** 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; 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; /** Grows the buffer's capacity, if necessary, to guarantee space for