diff options
Diffstat (limited to 'docs/linking_to_external_code.md')
-rw-r--r-- | docs/linking_to_external_code.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/linking_to_external_code.md b/docs/linking_to_external_code.md index 5484a7806..e03bfdfee 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) section, we saw that Deno could +In the [Getting Started](./getting_started.md) section, we saw that 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: @@ -52,7 +52,7 @@ specifying that path as the `$DENO_DIR` environmental variable at runtime. By using a lock file (using the `--lock` command line flag) you can ensure you're running the code you expect to be. You can learn more about this -[here](./integrity_checking). +[here](./linking_to_external_code/integrity_checking.md). ### How do you import to a specific version? |