diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-05-19 15:33:01 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-19 16:33:01 +0900 |
commit | ef5e5f5e460b40b2c5f7cbcf0a1d11488fc7277f (patch) | |
tree | b3993d1e3da4f04540c7ac3a254a43e635cd22fd | |
parent | beda3b028cbab14806401c5abbcc42abe0f0ecea (diff) |
docs(cli/dts): fix typo in `TestDefinition.only` description (#10697)
-rw-r--r-- | cli/dts/lib.deno.ns.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.ns.d.ts b/cli/dts/lib.deno.ns.d.ts index ddbb890b7..e3a59ac78 100644 --- a/cli/dts/lib.deno.ns.d.ts +++ b/cli/dts/lib.deno.ns.d.ts @@ -98,7 +98,7 @@ declare namespace Deno { fn: () => void | Promise<void>; name: string; ignore?: boolean; - /** If at lease one test has `only` set to true, only run tests that have + /** If at least one test has `only` set to true, only run tests that have * `only` set to true and fail the test suite. */ only?: boolean; /** Check that the number of async completed ops after the test is the same |