From 3558769d4654aad478804e506ccdcac38881dac1 Mon Sep 17 00:00:00 2001
From: tokiedokie <thetokiedokie@gmail.com>
Date: Mon, 2 Nov 2020 09:01:40 +0900
Subject: [PATCH] docs: add missing backtick in subprocess docs (#8204)

---
 docs/examples/subprocess.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/examples/subprocess.md b/docs/examples/subprocess.md
index 0e661a63bd..3f1297cc00 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