From fd9b0202c1bb0e83183fd0a53d8b1303612a5e31 Mon Sep 17 00:00:00 2001 From: Andrew Mitchell <32021055+mitch292@users.noreply.github.com> Date: Thu, 10 Dec 2020 13:49:50 -0500 Subject: [PATCH] fix(doc): Resolves dead link on script installer man page (#8705) --- docs/tools/script_installer.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/tools/script_installer.md b/docs/tools/script_installer.md index a5f37659cb..54ced70f63 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: