summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasser A.Idrissi <spookyframework@gmail.com>2020-10-07 01:32:56 +0100
committerGitHub <noreply@github.com>2020-10-07 11:32:56 +1100
commitece400d13fdb38d7acaa57a17354538bd5d6a44c (patch)
tree193af0585408db5e270ec2169b595e7bc12bb7a8
parent82a17dad11f415a3ef31484f3511abc1de5a61ee (diff)
docs(README): fix code block type (#7845)
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index c13040aef..ece7a2386 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/");