summaryrefslogtreecommitdiff
path: root/website/style_guide.md
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/style_guide.md
parent22feb74ba12215597416b5531f8a557302283e79 (diff)
website: update http example (#2367)
Diffstat (limited to 'website/style_guide.md')
-rw-r--r--website/style_guide.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/website/style_guide.md b/website/style_guide.md
index 09faf04aa..94a3cb4cc 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.3.1/testing/asserts.ts";
-import { test } from "https://deno.land/std@v0.3.1/testing/mod.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 { foo } from "./mod.ts";
test(function myTestFunction() {