diff options
author | Waldir Pimenta <waldyrious@gmail.com> | 2020-12-28 23:05:29 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-29 10:05:29 +1100 |
commit | b778f8bbff135dfa2213273f0f10fd5beda77de4 (patch) | |
tree | 627c0e05c422311e371d189e86d933e031d49aab /cli/dts/lib.deno.unstable.d.ts | |
parent | 6719cb9b2a83e9729d364926e8ca34f3629e7357 (diff) |
docs(introduction): Improve wording and capitalization (#8848)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index e8d484ec3..3b9754387 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -319,7 +319,7 @@ declare namespace Deno { * [tslib](https://www.npmjs.com/package/tslib). */ importHelpers?: boolean; /** This flag controls how `import` works, there are 3 different options: - * + * * - `remove`: The default behavior of dropping import statements which only * reference types. * - `preserve`: Preserves all `import` statements whose values or types are @@ -328,7 +328,7 @@ declare namespace Deno { * but will error when a value import is only used as a type. This might * be useful if you want to ensure no values are being accidentally * imported, but still make side-effect imports explicit. - * + * * This flag works because you can use `import type` to explicitly create an * `import` statement which should never be emitted into JavaScript. */ importsNotUsedAsValues?: "remove" | "preserve" | "error"; @@ -1041,7 +1041,7 @@ declare namespace Deno { * identified by `pid`. * * const p = Deno.run({ - * cmd: ["python", "-c", "from time import sleep; sleep(10000)"] + * cmd: ["sleep", "10000"] * }); * * Deno.kill(p.pid, Deno.Signal.SIGINT); |