0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-02-01 20:25:12 -05:00

docs: add missing backtick in subprocess docs (#8204)

This commit is contained in:
tokiedokie 2020-11-02 09:01:40 +09:00 committed by GitHub
parent 9397cf508e
commit 3558769d46
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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