From ece400d13fdb38d7acaa57a17354538bd5d6a44c Mon Sep 17 00:00:00 2001 From: "Yasser A.Idrissi" Date: Wed, 7 Oct 2020 01:32:56 +0100 Subject: [PATCH] docs(README): fix code block type (#7845) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c13040aefc4ba9..ece7a2386eeffe 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ deno run https://deno.land/std/examples/welcome.ts Or a more complex one: -```sh +```ts import { serve } from "https://deno.land/std@$STD_VERSION/http/server.ts"; const s = serve({ port: 8000 }); console.log("http://localhost:8000/");