summaryrefslogtreecommitdiff
path: root/cli/js
diff options
context:
space:
mode:
authorDante Calderón <dantehemerson@gmail.com>2020-05-13 23:38:42 -0500
committerGitHub <noreply@github.com>2020-05-14 06:38:42 +0200
commitc3a205bae854edc02f10bcaa292b0e2694baabc8 (patch)
treefc174f235dab33616614c384c38004a6aab095f8 /cli/js
parent45ec10535a797d96571d41a3753c9db16bafc15b (diff)
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"
Diffstat (limited to 'cli/js')
-rw-r--r--cli/js/tests/README.md2
-rw-r--r--cli/js/tests/chown_test.ts2
2 files changed, 2 insertions, 2 deletions
diff --git a/cli/js/tests/README.md b/cli/js/tests/README.md
index e48b03012..abc9212e4 100644
--- a/cli/js/tests/README.md
+++ b/cli/js/tests/README.md
@@ -41,7 +41,7 @@ ways:
`unit_test_runner.ts` is the main script used to run unit tests.
-Runner discoveres required permissions combinations by loading
+Runner discovers required permissions combinations by loading
`cli/js/tests/unit_tests.ts` and going through all registered instances of
`unitTest`.
diff --git a/cli/js/tests/chown_test.ts b/cli/js/tests/chown_test.ts
index eb3a75ba7..724ea5a21 100644
--- a/cli/js/tests/chown_test.ts
+++ b/cli/js/tests/chown_test.ts
@@ -108,7 +108,7 @@ if (Deno.build.os !== "windows") {
async function chownSyncSucceed(): Promise<void> {
// TODO: when a file's owner is actually being changed,
// chown only succeeds if run under priviledged user (root)
- // The test script has no such priviledge, so need to find a better way to test this case
+ // The test script has no such privilege, so need to find a better way to test this case
const { uid, gid } = await getUidAndGid();
const enc = new TextEncoder();