diff options
author | Jesper van den Ende <jespertheend@users.noreply.github.com> | 2021-12-13 13:26:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-13 13:26:03 +0100 |
commit | a2b4d1354077b676459142eb399df9d5a70c0c5f (patch) | |
tree | 57f19e33971c05f8348175d2c3e4c8bc91dd96c1 /cli/dts/lib.deno.unstable.d.ts | |
parent | 5afb2cca65f10b8d0baaff4989a102d24d629087 (diff) |
docs: Fix typo in EmitOptions (#13062)
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index e675b6347..affa4b3fd 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -451,7 +451,7 @@ declare namespace Deno { export interface EmitOptions { /** Indicate that the source code should be emitted to a single file * JavaScript bundle that is a single ES module (`"module"`) or a single - * file self contained script we executes in an immediately invoked function + * file self contained script executed in an immediately invoked function * when loaded (`"classic"`). */ bundle?: "module" | "classic"; /** If `true` then the sources will be typed checked, returning any |