summaryrefslogtreecommitdiff
path: root/website
diff options
context:
space:
mode:
Diffstat (limited to 'website')
-rw-r--r--website/index.html2
-rw-r--r--website/style_guide.md4
2 files changed, 3 insertions, 3 deletions
diff --git a/website/index.html b/website/index.html
index f4cbe69c5..16370e46b 100644
--- a/website/index.html
+++ b/website/index.html
@@ -113,7 +113,7 @@ href="https://deno.land/x/install/install.ps1">https://deno.land/x/install/insta
<p>Or a more complex one:</p>
- <pre><code class="typescript language-typescript">import { serve } from "https://deno.land/std@v0.5/http/server.ts";
+ <pre><code class="typescript language-typescript">import { serve } from "https://deno.land/std@v0.11/http/server.ts";
async function main() {
const body = new TextEncoder().encode("Hello World\n");
diff --git a/website/style_guide.md b/website/style_guide.md
index 765528922..d1eff8357 100644
--- a/website/style_guide.md
+++ b/website/style_guide.md
@@ -289,8 +289,8 @@ test myTestFunction ... ok
Example of test:
```ts
-import { assertEquals } from "https://deno.land/std@v0.5/testing/asserts.ts";
-import { test } from "https://deno.land/std@v0.5/testing/mod.ts";
+import { assertEquals } from "https://deno.land/std@v0.11/testing/asserts.ts";
+import { test } from "https://deno.land/std@v0.11/testing/mod.ts";
import { foo } from "./mod.ts";
test(function myTestFunction() {