diff options
author | Tomofumi Chiba <tomofumi.chiba@gmail.com> | 2020-06-11 09:24:41 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-10 20:24:41 -0400 |
commit | a1b37f177be848ce3c3248b6b835f8999e36afff (patch) | |
tree | 879a8956abe9069bd72da0249908ae74a8781ce9 /docs/standard_library.md | |
parent | e4e332abbbe0dbdb44305a261f9965ba89e7767b (diff) |
fixed double prompt in manual (#6230)
Diffstat (limited to 'docs/standard_library.md')
-rw-r--r-- | docs/standard_library.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/standard_library.md b/docs/standard_library.md index d2537fbc5..67e072768 100644 --- a/docs/standard_library.md +++ b/docs/standard_library.md @@ -48,7 +48,7 @@ TS2339 [ERROR]: Property 'utimeSync' does not exist on type 'typeof Deno'. Solution to that problem requires adding `--unstable` flag: ```shell -$ deno run --allow-read --allow-write --unstable main.ts +deno run --allow-read --allow-write --unstable main.ts ``` To make sure that API producing error is unstable check |