Skip to content

Commit

Permalink
docs: Fix typo in OS Signals example (denoland#5413)
Browse files Browse the repository at this point in the history
  • Loading branch information
andrevargas committed May 14, 2020
1 parent 5b76f7a commit 750a341
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/examples/os_signals.md
Expand Up @@ -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!");
```

Expand Down

0 comments on commit 750a341

Please sign in to comment.