From c3a205bae854edc02f10bcaa292b0e2694baabc8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dante=20Calder=C3=B3n?= Date: Wed, 13 May 2020 23:38:42 -0500 Subject: Fix typos across the repo (#5295) Corrections made: * cli/js/tests/README.md:44:7: corrected "discoveres" to "discovers" * cli/js/tests/chown_test.ts:111:37: corrected "priviledge" to "privilege" * cli/worker.rs:231:56: corrected "decendants" to "descendants" * deno_typescript/lib.rs:136:50: corrected "emmited" to "emitted" * core/es_isolate.rs:492:67: corrected "registerd" to "registered" * core/isolate.rs:103:28: corrected "initalize" to "initialize" * docs/runtime.md:29:14: corrected "ect" to "etc" * docs/tools/debugger.md:122:16: corrected "implementes" to "implements" * std/encoding/_yaml/dumper/dumper_state.ts:57:63: corrected "everwhere" to "everywhere" * std/encoding/csv.ts:37:43: corrected "referal" to "referral" * std/fmt/sprintf.ts:209:20: corrected "unusuable" to "unusable" * std/fmt/README.md:21:40: corrected "Alternativly" to "Alternatively" * std/fmt/README.md:35:68: corrected "seperated" to "separated" * std/fmt/README.md:179:59: corrected "provded" to "provided" * std/mime/multipart.ts:581:46: corrected "writen" to "written" * std/path/_globrex.ts:19:52: corrected "equivelant" to "equivalent" * std/node/events_test.ts:447:9: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:475:9: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:500:29: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:530:40: corrected "asyncronous" to "asynchronous" * std/node/events_test.ts:555:9: corrected "asyncronous" to "asynchronous" * tools/deno_tcp_proxy.ts:1:42: corrected "perfromance" to "performance" * std/node/module.ts:1003:18: corrected "existend" to "existed" --- std/node/events_test.ts | 10 +++++----- std/node/module.ts | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) (limited to 'std/node') diff --git a/std/node/events_test.ts b/std/node/events_test.ts index 5960290af..e3167e363 100644 --- a/std/node/events_test.ts +++ b/std/node/events_test.ts @@ -444,7 +444,7 @@ test({ }); test({ - name: "asyncronous iteration of events are handled as expected", + name: "asynchronous iteration of events are handled as expected", async fn() { const ee = new EventEmitter(); setTimeout(() => { @@ -472,7 +472,7 @@ test({ }); test({ - name: "asyncronous error handling of emitted events works as expected", + name: "asynchronous error handling of emitted events works as expected", async fn() { const ee = new EventEmitter(); const _err = new Error("kaboom"); @@ -497,7 +497,7 @@ test({ }); test({ - name: "error thrown during asyncronous processing of events is handled", + name: "error thrown during asynchronous processing of events is handled", async fn() { const ee = new EventEmitter(); const _err = new Error("kaboom"); @@ -527,7 +527,7 @@ test({ test({ name: - "error thrown in processing loop of asyncronous event prevents processing of additional events", + "error thrown in processing loop of asynchronous event prevents processing of additional events", async fn() { const ee = new EventEmitter(); const _err = new Error("kaboom"); @@ -552,7 +552,7 @@ test({ }); test({ - name: "asyncronous iterator next() works as expected", + name: "asynchronous iterator next() works as expected", async fn() { const ee = new EventEmitter(); const iterable = on(ee, "foo"); diff --git a/std/node/module.ts b/std/node/module.ts index f777e658f..e73eb4d5d 100644 --- a/std/node/module.ts +++ b/std/node/module.ts @@ -1000,7 +1000,7 @@ function emitCircularRequireWarning(prop: any): void { } // A Proxy that can be used as the prototype of a module.exports object and -// warns when non-existend properties are accessed. +// warns when non-existent properties are accessed. const CircularRequirePrototypeWarningProxy = new Proxy( {}, { -- cgit v1.2.3