diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-05-10 03:09:42 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-10 03:09:42 +0200 |
commit | 45f9b32ef0416e0477e9f5335df49ca3cccdb6eb (patch) | |
tree | b04cab2d36b39932320f9e95537910b8742f32f7 /docs/linking_to_external_code.md | |
parent | f6b617784f53497b0c59d6f6f1370cb2223e38f3 (diff) |
Docs for deno test + minor other changes (#5185)
* Added fs events example.
* Added docs for `deno test`.
* Renamed file server example.
* Unified markdown code types.
* Removed plugin topics from TOC.
* Fixed links.
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? |