1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

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.
This commit is contained in:
vwh 2024-07-12 22:04:27 +03:00 committed by GitHub
parent 1c41db76ac
commit 1711158984
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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));
}