summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2020-10-20 12:15:25 +0200
committerGitHub <noreply@github.com>2020-10-20 12:15:25 +0200
commit65dc86ebc3b97a0463a47a9a64786b268f62188b (patch)
treead638539c2640200506648638cad3404f427fb43 /README.md
parent7aba07cc7711adfa774afd8e77695f386127c4bc (diff)
fix: codesnippet in README contains $STD_VERSION (#8045)
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index d2bd05192..2a722c56d 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) {