diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 10:49:41 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 13:49:41 -0400 |
commit | d2fde8a363f1db9fd37b96b46260dcbf6c4d1b3e (patch) | |
tree | 63e876cd972e9d2de192408ba2aee3f508e1c461 /docs/examples/subprocess.md | |
parent | eaba9adb03f0427ecf0a7a8b6937a6b82e134266 (diff) |
doc: end sentences with a period in examples (#7722)
Diffstat (limited to 'docs/examples/subprocess.md')
-rw-r--r-- | docs/examples/subprocess.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/examples/subprocess.md b/docs/examples/subprocess.md index fad6c71bf..137e7d6b4 100644 --- a/docs/examples/subprocess.md +++ b/docs/examples/subprocess.md @@ -3,13 +3,13 @@ ## Concepts - Deno is capable of spawning a subprocess via - [Deno.run](https://doc.deno.land/builtin/stable#Deno.run) -- `--allow-run` permission is required to spawn a subprocess -- Spawned subprocesses do not run in a security sandbox + [Deno.run](https://doc.deno.land/builtin/stable#Deno.run). +- `--allow-run` permission is required to spawn a subprocess. +- Spawned subprocesses do not run in a security sandbox. - Communicate with the subprocess via the [stdin](https://doc.deno.land/builtin/stable#Deno.stdin), [stdout](https://doc.deno.land/builtin/stable#Deno.stdout) and - [stderr](https://doc.deno.land/builtin/stable#Deno.stderr) streams + [stderr](https://doc.deno.land/builtin/stable#Deno.stderr) streams. ## Simple example |