Skip to content

Commit

Permalink
fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
tranhoaison authored and jhheider committed Apr 21, 2023
1 parent e7d283a commit 4fcf019
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/vendor/Path.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import "utils" //FIXME for console.verbose
// based on https://github.com/mxcl/Path.swift

// everything is Sync because TypeScript will unfortunately not
// cascade `await`, meaing our chainable syntax would become:
// cascade `await`, meaning our chainable syntax would become:
//
// await (await foo).bar
//
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/args.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Deno.test("parse args", async test => {
assertEquals(args.mode, 'help')
})

await test.step("arg seperator", () => {
await test.step("arg separator", () => {
const [args, flags] = parseArgs(["-S", "--", "node", "run.js", "-n", "1", "-h", "2"], "/tea")
assertEquals(args.args, ["node", "run.js", "-n", "1", "-h", "2"])
assertEquals(args.mode, "std")
Expand Down
2 changes: 1 addition & 1 deletion tests/functional/devenv.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Deno.test("dev env interactions with HOME", { sanitizeResources: false, sanitize
})

Deno.test("should enter dev env", { sanitizeResources: false, sanitizeOps: false }, async test => {
// each of the files in this list must have a zlib.net^1.2 depedency and a FOO=BAR env
// each of the files in this list must have a zlib.net^1.2 dependency and a FOO=BAR env
const envFiles = ["tea.yaml", "deno.json", "deno.jsonc", "package.json", "cargo.toml",
"Gemfile", "pyproject.toml", "go.mod", "requirements.txt"]

Expand Down

0 comments on commit 4fcf019

Please sign in to comment.