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.md | |
parent | 76ee5c780848a922dfc0ab8ac48096ab2262cc4a (diff) |
adjust docs (#5598)
Diffstat (limited to 'docs/linking_to_external_code.md')
-rw-r--r-- | docs/linking_to_external_code.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/linking_to_external_code.md b/docs/linking_to_external_code.md index 1ec556478..af46faf5d 100644 --- a/docs/linking_to_external_code.md +++ b/docs/linking_to_external_code.md @@ -1,6 +1,6 @@ # Linking to third party code -In the [Getting Started](./getting_started.md) section, we saw that Deno could +In the [Getting Started](./getting_started.md) section, we saw Deno could execute scripts from URLs. Like browser JavaScript, Deno can import libraries directly from URLs. This example uses a URL to import an assertion library: @@ -29,10 +29,10 @@ and yet it accessed the network. The runtime has special access to download imports and cache them to disk. Deno caches remote imports in a special directory specified by the `$DENO_DIR` -environmental variable. It defaults to the system's cache directory if -`$DENO_DIR` is not specified. The next time you run the program, no downloads -will be made. If the program hasn't changed, it won't be recompiled either. The -default directory is: +environment variable. It defaults to the system's cache directory if `$DENO_DIR` +is not specified. The next time you run the program, no downloads will be made. +If the program hasn't changed, it won't be recompiled either. The default +directory is: - On Linux/Redox: `$XDG_CACHE_HOME/deno` or `$HOME/.cache/deno` - On Windows: `%LOCALAPPDATA%/deno` (`%LOCALAPPDATA%` = `FOLDERID_LocalAppData`) |