From 65dc86ebc3b97a0463a47a9a64786b268f62188b Mon Sep 17 00:00:00 2001 From: Luca Casonato Date: Tue, 20 Oct 2020 12:15:25 +0200 Subject: [PATCH] fix: codesnippet in README contains $STD_VERSION (#8045) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d2bd051929..2a722c56d3 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ deno run https://deno.land/std/examples/welcome.ts Or a more complex one: ```ts -import { serve } from "https://deno.land/std@$STD_VERSION/http/server.ts"; +import { serve } from "https://deno.land/std/http/server.ts"; const s = serve({ port: 8000 }); console.log("http://localhost:8000/"); for await (const req of s) {