diff options
author | Andrew Mitchell <32021055+mitch292@users.noreply.github.com> | 2020-12-10 13:49:50 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-10 19:49:50 +0100 |
commit | fd9b0202c1bb0e83183fd0a53d8b1303612a5e31 (patch) | |
tree | 7ffcdf38726bef34215c73f047f602045b81e563 /docs/tools | |
parent | 5f05e1783e9f08d1be4b71f2099601458da78dcd (diff) |
fix(doc): Resolves dead link on script installer man page (#8705)
Diffstat (limited to 'docs/tools')
-rw-r--r-- | docs/tools/script_installer.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tools/script_installer.md b/docs/tools/script_installer.md index a5f37659c..54ced70f6 100644 --- a/docs/tools/script_installer.md +++ b/docs/tools/script_installer.md @@ -62,7 +62,7 @@ deno install --allow-net --allow-read https://deno.land/std@$STD_VERSION/http/fi The above command creates an executable called `file_server` that runs with network and read permissions and binds to port 8080. -For good practice, use the [`import.meta.main`](../examples/testing_if_main.md) +For good practice, use the [`import.meta.main`](../examples/module_metadata.md) idiom to specify the entry point in an executable script. Example: |