From 3d4267e1ac968df283f59afe8a73a3aa0373213f Mon Sep 17 00:00:00 2001 From: Max Mossberg Date: Wed, 8 Jan 2025 19:32:57 -0500 Subject: [PATCH] Update command_line_interface.md Fix url for deno run example --- runtime/getting_started/command_line_interface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/getting_started/command_line_interface.md b/runtime/getting_started/command_line_interface.md index d117063b2..0030e03df 100644 --- a/runtime/getting_started/command_line_interface.md +++ b/runtime/getting_started/command_line_interface.md @@ -39,7 +39,7 @@ Deno supports running scripts directly from URLs. This is particularly useful for quickly testing or running code without downloading it first: ```shell -deno run https://docs.deno.com/examples/hello-world.ts +deno run https://docs.deno.com/examples/scripts/hello_world.ts ``` You can also run a script by piping it through standard input. This is useful