summaryrefslogtreecommitdiff
path: root/website/index.html
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-05-21 00:31:57 -0400
committerGitHub <noreply@github.com>2019-05-21 00:31:57 -0400
commit0e89ca7b70c7f3dbcaadd330fce277e0434fdc4c (patch)
tree623533e6bf5fc23f69bfa7a3e4a0f90dfa4a9603 /website/index.html
parent22feb74ba12215597416b5531f8a557302283e79 (diff)
website: update http example (#2367)
Diffstat (limited to 'website/index.html')
-rw-r--r--website/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/website/index.html b/website/index.html
index 4af6d67a4..9f5db345d 100644
--- a/website/index.html
+++ b/website/index.html
@@ -108,7 +108,7 @@ href="https://github.com/denoland/deno_install/blob/master/install.ps1">https://
<p>Or a more complex one:</p>
- <pre><code class="typescript language-typescript">import { serve } from "https://deno.land/std@v0.3.2/http/server.ts";
+ <pre><code class="typescript language-typescript">import { serve } from "https://deno.land/std@v0.5/http/server.ts";
async function main() {
const body = new TextEncoder().encode("Hello World\n");