diff options
author | Luca Casonato <lucacasonato@yahoo.com> | 2020-07-31 11:12:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-31 11:12:20 +0200 |
commit | 4afb4b6e46de2ed536a3c9828d70d7799b5b6d03 (patch) | |
tree | aa31f3ea3b5ca01a97e13a777eed51c7dcbd17c4 /docs/contributing | |
parent | 6e7208bec2911ac0d1729f334fc90bc50b8f9203 (diff) |
feat: add $STD_VERSION replacement variable in docs (#6922)
Diffstat (limited to 'docs/contributing')
-rw-r--r-- | docs/contributing/style_guide.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/contributing/style_guide.md b/docs/contributing/style_guide.md index a54f29281..7e68b04e4 100644 --- a/docs/contributing/style_guide.md +++ b/docs/contributing/style_guide.md @@ -278,7 +278,7 @@ test myTestFunction ... ok Example of test: ```ts -import { assertEquals } from "https://deno.land/std@v0.11/testing/asserts.ts"; +import { assertEquals } from "https://deno.land/std@$STD_VERSION/testing/asserts.ts"; import { foo } from "./mod.ts"; Deno.test("myTestFunction" function() { |