From a23c0af5bd1bf56a5fdb051278138258c09ea076 Mon Sep 17 00:00:00 2001 From: Casper Beyer Date: Mon, 19 Jul 2021 06:29:10 +0800 Subject: [PATCH] docs: fix bash code blocks tagged as ts (#11439) --- docs/linking_to_external_code/reloading_modules.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/linking_to_external_code/reloading_modules.md b/docs/linking_to_external_code/reloading_modules.md index 48c5efbb2b..e745996b1f 100644 --- a/docs/linking_to_external_code/reloading_modules.md +++ b/docs/linking_to_external_code/reloading_modules.md @@ -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 ```