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

docs(README): fix code block type (#7845)

This commit is contained in:
Yasser A.Idrissi 2020-10-07 01:32:56 +01:00 committed by GitHub
parent 82a17dad11
commit ece400d13f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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/");