summaryrefslogtreecommitdiff
path: root/docs/examples
diff options
context:
space:
mode:
authortokiedokie <thetokiedokie@gmail.com>2020-11-02 09:01:40 +0900
committerGitHub <noreply@github.com>2020-11-02 11:01:40 +1100
commit3558769d4654aad478804e506ccdcac38881dac1 (patch)
treec16c33fb780333e9ed2ba753d555d1db84068d0f /docs/examples
parent9397cf508e57b8dac7d68b5469c1cca0618c6b10 (diff)
docs: add missing backtick in subprocess docs (#8204)
Diffstat (limited to 'docs/examples')
-rw-r--r--docs/examples/subprocess.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/subprocess.md b/docs/examples/subprocess.md
index 0e661a63b..3f1297cc0 100644
--- a/docs/examples/subprocess.md
+++ b/docs/examples/subprocess.md
@@ -11,7 +11,7 @@
[stdout](https://doc.deno.land/builtin/stable#Deno.stdout) and
[stderr](https://doc.deno.land/builtin/stable#Deno.stderr) streams.
- Use a specific shell by providing its path/name and its string input switch,
- e.g. `Deno.run({cmd: ["bash", "-c", '"ls -la"']});
+ e.g. `Deno.run({cmd: ["bash", "-c", '"ls -la"']});`
## Simple example