summaryrefslogtreecommitdiff
path: root/cli
diff options
context:
space:
mode:
Diffstat (limited to 'cli')
-rw-r--r--cli/js/tests/README.md2
-rw-r--r--cli/js/tests/chown_test.ts2
-rw-r--r--cli/worker.rs2
3 files changed, 3 insertions, 3 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();
diff --git a/cli/worker.rs b/cli/worker.rs
index e91758e10..d52d96594 100644
--- a/cli/worker.rs
+++ b/cli/worker.rs
@@ -228,7 +228,7 @@ impl DerefMut for Worker {
///
/// It provides ops available in the `Deno` namespace.
///
-/// All WebWorkers created during program execution are decendants of
+/// All WebWorkers created during program execution are descendants of
/// this worker.
pub struct MainWorker(Worker);