diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 23:01:32 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-28 16:01:32 +1000 |
commit | 8ceb165e5d1dc0c8d417e42ffc3a26e8f5a62a03 (patch) | |
tree | f21e67d6ac5f2e567cda6b0f2baec78ce930a777 /docs/linking_to_external_code/reloading_modules.md | |
parent | 1437838ea19bf2e33f28ed4d30b1aa7c5aa5286e (diff) |
docs: end sentences with a period in docs (#7730)
Diffstat (limited to 'docs/linking_to_external_code/reloading_modules.md')
-rw-r--r-- | docs/linking_to_external_code/reloading_modules.md | 4 |
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 |