summaryrefslogtreecommitdiff
path: root/website/style_guide.md
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-07-09 18:59:13 -0400
committerGitHub <noreply@github.com>2019-07-09 18:59:13 -0400
commitd7fa8c3207751259a647c7b90aa5e2591401834a (patch)
tree557fc726b57a37303a8013619400063e71764faf /website/style_guide.md
parent953a5a31dbda1d79065d842cf312e3149d2c70a4 (diff)
Update deno.land links v0.11 (#2628)
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 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() {