diff options
author | Matt Dumler <mattd3v@pm.me> | 2020-05-18 14:53:25 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-18 15:53:25 -0400 |
commit | 88b24261ba467c20d4ef90224b07c19a71398f0f (patch) | |
tree | 0c5b47c766208877adc3a2afb16506c888d6e50b /docs/linking_to_external_code | |
parent | 76ee5c780848a922dfc0ab8ac48096ab2262cc4a (diff) |
adjust docs (#5598)
Diffstat (limited to 'docs/linking_to_external_code')
-rw-r--r-- | docs/linking_to_external_code/import_maps.md | 2 | ||||
-rw-r--r-- | docs/linking_to_external_code/proxies.md | 4 | ||||
-rw-r--r-- | docs/linking_to_external_code/reloading_modules.md | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/docs/linking_to_external_code/import_maps.md b/docs/linking_to_external_code/import_maps.md index 6b051bef8..fe3a40cd2 100644 --- a/docs/linking_to_external_code/import_maps.md +++ b/docs/linking_to_external_code/import_maps.md @@ -5,7 +5,7 @@ Deno supports [import maps](https://github.com/WICG/import-maps). -You can use import map with the `--importmap=<FILE>` CLI flag. +You can use import maps with the `--importmap=<FILE>` CLI flag. Current limitations: diff --git a/docs/linking_to_external_code/proxies.md b/docs/linking_to_external_code/proxies.md index 11c66a5a9..5c98f909d 100644 --- a/docs/linking_to_external_code/proxies.md +++ b/docs/linking_to_external_code/proxies.md @@ -1,9 +1,9 @@ ## Proxies -Deno supports proxies for module downloads and `fetch` API. +Deno supports proxies for module downloads and the Web standard `fetch` API. Proxy configuration is read from environmental variables: `HTTP_PROXY` and `HTTPS_PROXY`. -In case of Windows if environmental variables are not found Deno falls back to +In case of Windows, if environment variables are not found Deno falls back to reading proxies from registry. diff --git a/docs/linking_to_external_code/reloading_modules.md b/docs/linking_to_external_code/reloading_modules.md index 886cf5628..94b87b711 100644 --- a/docs/linking_to_external_code/reloading_modules.md +++ b/docs/linking_to_external_code/reloading_modules.md @@ -19,4 +19,4 @@ comma to separate URLs `--reload=https://deno.land/std/fs/copy.ts,https://deno.land/std/fmt/colors.ts` -<!-- Should this be part of examples? -- +<!-- Should this be part of examples? --> |