diff options
author | André Vargas <12630224+andrevargas@users.noreply.github.com> | 2020-05-14 17:18:33 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-14 22:18:33 +0200 |
commit | 750a3413a0db067a83697f8e8059a2bc69bd11c6 (patch) | |
tree | cec8a6cf7afed80b59a07c6a98846bdfe86e75c9 | |
parent | 5b76f7a838bf869872811c52c26c9ee9f01585b6 (diff) |
docs: Fix typo in OS Signals example (#5413)
-rw-r--r-- | docs/examples/os_signals.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/os_signals.md b/docs/examples/os_signals.md index 71dca4d24..7dfa6187d 100644 --- a/docs/examples/os_signals.md +++ b/docs/examples/os_signals.md @@ -16,7 +16,7 @@ for await (const _ of Deno.signal(Deno.Signal.SIGINT)) { `Deno.signal()` also works as a promise. ```ts -await Deno.signal(Deno.Singal.SIGINT); +await Deno.signal(Deno.Signal.SIGINT); console.log("interrupted!"); ``` |