diff options
author | vwh <vwhe@proton.me> | 2024-07-12 22:04:27 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-12 15:04:27 -0400 |
commit | 17111589848045b1f2d6b6b47f077c5b63accfc0 (patch) | |
tree | ed1b9e811201e454a932a0cae3f9c2997d873692 | |
parent | 1c41db76ac9eb66dee8871a5b4604813681aa59f (diff) |
fix(cli/init): broken link in deno init sample template (#24545)
This commit fixes the broken link in the sample template provided by the
deno init command.
-rw-r--r-- | cli/tools/init/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tools/init/mod.rs b/cli/tools/init/mod.rs index 23b14e17c..b043ab2c4 100644 --- a/cli/tools/init/mod.rs +++ b/cli/tools/init/mod.rs @@ -68,7 +68,7 @@ Deno.test(function addTest() { return a + b; } -// Learn more at https://deno.land/manual/examples/module_metadata#concepts +// Learn more at https://docs.deno.com/runtime/manual/examples/module_metadata#concepts if (import.meta.main) { console.log("Add 2 + 3 =", add(2, 3)); } |