1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

docs: fix bash code blocks tagged as ts (#11439)

This commit is contained in:
Casper Beyer 2021-07-19 06:29:10 +08:00 committed by GitHub
parent 4dee1fd463
commit a23c0af5bd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -8,7 +8,7 @@ usage is described below:
### To reload everything
```ts
```bash
deno cache --reload my_module.ts
```
@ -19,14 +19,14 @@ argument to a `--reload` flag.
To reload all \$STD_VERSION standard modules:
```ts
```bash
deno cache --reload=https://deno.land/std@$STD_VERSION my_module.ts
```
To reload specific modules (in this example - colors and file system copy) use a
comma to separate URLs.
```ts
```bash
deno cache --reload=https://deno.land/std@$STD_VERSION/fs/copy.ts,https://deno.land/std@$STD_VERSION/fmt/colors.ts my_module.ts
```