Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
ry committed Apr 15, 2019
1 parent 018f33a commit 3f0c769
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/manual.md
Expand Up @@ -410,8 +410,8 @@ async function main() {
Deno.stdout.write(rawOutput); Deno.stdout.write(rawOutput);
} else { } else {
const rawError = await p.stderrOutput(); const rawError = await p.stderrOutput();
const errorString = new TextDecoder().decode(rawError) const errorString = new TextDecoder().decode(rawError);
console.log(errorString) console.log(errorString);
} }


Deno.exit(code); Deno.exit(code);
Expand Down

0 comments on commit 3f0c769

Please sign in to comment.