summaryrefslogtreecommitdiff
path: root/docs/examples/os_signals.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-27 10:49:41 -0700
committerGitHub <noreply@github.com>2020-09-27 13:49:41 -0400
commitd2fde8a363f1db9fd37b96b46260dcbf6c4d1b3e (patch)
tree63e876cd972e9d2de192408ba2aee3f508e1c461 /docs/examples/os_signals.md
parenteaba9adb03f0427ecf0a7a8b6937a6b82e134266 (diff)
doc: end sentences with a period in examples (#7722)
Diffstat (limited to 'docs/examples/os_signals.md')
-rw-r--r--docs/examples/os_signals.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/examples/os_signals.md b/docs/examples/os_signals.md
index e4d7bc43a..e49c3eb76 100644
--- a/docs/examples/os_signals.md
+++ b/docs/examples/os_signals.md
@@ -5,12 +5,12 @@
## Concepts
-- Use the `--unstable` flag to access new or unstable features in Deno
+- Use the `--unstable` flag to access new or unstable features in Deno.
- [Deno.signal](https://doc.deno.land/builtin/unstable#Deno.signal) can be used
- to capture and monitor OS signals
+ to capture and monitor OS signals.
- Use the `dispose()` function of the Deno.signal
[SignalStream](https://doc.deno.land/builtin/unstable#Deno.SignalStream) to
- stop watching the signal
+ stop watching the signal.
## Async iterator example