diff options
Diffstat (limited to 'docs/runtime/program_lifecycle.md')
-rw-r--r-- | docs/runtime/program_lifecycle.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/runtime/program_lifecycle.md b/docs/runtime/program_lifecycle.md index 7f6035048..f0ebbd448 100644 --- a/docs/runtime/program_lifecycle.md +++ b/docs/runtime/program_lifecycle.md @@ -61,12 +61,12 @@ major difference between them, let's run the example: $ deno run main.ts log from imported script log from main script -got load event in onload function (main) got load event in event handler (imported) got load event in event handler (main) -got unload event in onunload function (main) +got load event in onload function (main) got unload event in event handler (imported) got unload event in event handler (main) +got unload event in onunload function (main) ``` All listeners added using `window.addEventListener` were run, but |