diff options
author | Zach Gotsch <orbipedis@gmail.com> | 2020-06-10 14:19:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 17:19:56 -0400 |
commit | e53a1b14968099df06624a4dc4d4ab810d1ce443 (patch) | |
tree | e9bbcc297d920edfd2ae409b574f39a0a18f0e10 /deno_typescript | |
parent | fa6f10219e096e0c2765628ae3d5bc733e489adb (diff) |
fix typo (#6136)
Diffstat (limited to 'deno_typescript')
-rw-r--r-- | deno_typescript/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deno_typescript/README.md b/deno_typescript/README.md index 8ab969c78..70fe74773 100644 --- a/deno_typescript/README.md +++ b/deno_typescript/README.md @@ -71,7 +71,7 @@ browsers could not consume modules that require top-level-await. In order to facilitate this, there are two functions that are in the scope of the module in addition to the `System.register()` method. `__instantiate(main)` -will bootstrap everything synchronously and `__instantiate(main)` will do so -asynchronously. When emitting a bundle that contains a module that requires +will bootstrap everything synchronously and `__instantiateAsync(main)` will do +so asynchronously. When emitting a bundle that contains a module that requires top-level-await, Deno will detect this and utilise `await __instantiateAsync(main)` instead. |