From 88b24261ba467c20d4ef90224b07c19a71398f0f Mon Sep 17 00:00:00 2001 From: Matt Dumler Date: Mon, 18 May 2020 14:53:25 -0500 Subject: adjust docs (#5598) --- docs/linking_to_external_code.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'docs/linking_to_external_code.md') 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`) -- cgit v1.2.3