summaryrefslogtreecommitdiff
path: root/docs/linking_to_external_code/reloading_modules.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/linking_to_external_code/reloading_modules.md')
-rw-r--r--docs/linking_to_external_code/reloading_modules.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/linking_to_external_code/reloading_modules.md b/docs/linking_to_external_code/reloading_modules.md
index e96cfb0aa..48c5efbb2 100644
--- a/docs/linking_to_external_code/reloading_modules.md
+++ b/docs/linking_to_external_code/reloading_modules.md
@@ -17,14 +17,14 @@ deno cache --reload my_module.ts
Sometimes we want to upgrade only some modules. You can control it by passing an
argument to a `--reload` flag.
-To reload all \$STD_VERSION standard modules
+To reload all \$STD_VERSION standard modules:
```ts
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
+comma to separate URLs.
```ts
deno cache --reload=https://deno.land/std@$STD_VERSION/fs/copy.ts,https://deno.land/std@$STD_VERSION/fmt/colors.ts my_module.ts