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