summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2023-06-26 15:10:27 +0200
committerGitHub <noreply@github.com>2023-06-26 09:10:27 -0400
commit801b9ec62d94f201e67d053ee90dae0b70e50a42 (patch)
tree145f840c570dd72258ef309e9d31f100a5aa5786 /tools
parentad3c494b46c97f0cf91098b7ec2afa576ea7a3dd (diff)
chore: fix typos (#19572)
Diffstat (limited to 'tools')
-rw-r--r--tools/node_compat/README.md6
-rwxr-xr-xtools/node_compat/setup.ts2
-rw-r--r--tools/release/release_doc_template.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/tools/node_compat/README.md b/tools/node_compat/README.md
index 29a7ef739..e8f4a034e 100644
--- a/tools/node_compat/README.md
+++ b/tools/node_compat/README.md
@@ -9,7 +9,7 @@ Node.js compat testing in Deno repository.
- `//tools/node_compat/setup.ts`
- This script sets up the Node.js compat tests.
-- `//tools/node_comapt/versions/`
+- `//tools/node_compat/versions/`
- Node.js source tarballs and extracted test cases are stored here.
- `//cli/tests/node_compat/config.jsonc`
- This json file stores the settings about which Node.js compat test to run
@@ -29,7 +29,7 @@ The above command copies the updated items from Node.js tarball to the Deno
source tree.
Ideally Deno should pass the Node.js compat tests without modification, but if
-you need to modify it, then add that item in `ignore` perperty of
+you need to modify it, then add that item in `ignore` property of
`config.jsonc`. Then `setup.ts` doesn't overwrite the modified Node.js test
cases anymore.
@@ -41,7 +41,7 @@ If the test needs to be ignored in particular platform, then add them in
Node.js compat tests are run as part of `cargo test` command. If you want to run
only the Node.js compat test cases you can use the command
`cargo test node_compat`. If you want to run specific tests you can use the
-command `deno task test` (in `tools/node_comapt` dir). For example, if you want
+command `deno task test` (in `tools/node_compat` dir). For example, if you want
to run all test files which contains `buffer` in filename you can use the
command:
diff --git a/tools/node_compat/setup.ts b/tools/node_compat/setup.ts
index 132acfe11..17c716a08 100755
--- a/tools/node_compat/setup.ts
+++ b/tools/node_compat/setup.ts
@@ -115,7 +115,7 @@ async function copyTests() {
for await (const entry of walk(VENDORED_NODE_TEST, { skip: ignoreList })) {
const fragments = entry.path.split(sep);
// suite is the directory name after test/. For example, if the file is
- // "node_comapt/node/test/fixtures/policy/main.mjs"
+ // "node_compat/node/test/fixtures/policy/main.mjs"
// then suite is "fixtures/policy"
const suite = fragments.slice(fragments.indexOf("node_compat") + 3, -1)
.join("/");
diff --git a/tools/release/release_doc_template.md b/tools/release/release_doc_template.md
index 5579abb48..7e6f93037 100644
--- a/tools/release/release_doc_template.md
+++ b/tools/release/release_doc_template.md
@@ -188,7 +188,7 @@ script generates the symbols based on the latest tags.
<details>
<summary>Failure Steps</summary>
- 1. Clone `deno/apliland_scripts`.
+ 1. Clone `deno/apiland_scripts`.
2. Execute `deno task release`.
</details>