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:
parent
4dee1fd463
commit
a23c0af5bd
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue