From 13b5cc7673329463a34ce0a315a06423f909ec58 Mon Sep 17 00:00:00 2001 From: Trivikram Kamat <16024985+trivikr@users.noreply.github.com> Date: Sun, 27 Sep 2020 03:11:01 -0700 Subject: [PATCH] docs: use $STD_VERSION in std lib import comment (#7707) --- docs/standard_library.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/standard_library.md b/docs/standard_library.md index 37ed550f44..319b53b156 100644 --- a/docs/standard_library.md +++ b/docs/standard_library.md @@ -26,7 +26,7 @@ instead, used a version of the std library which is immutable and will not change: ```typescript -// imports from v0.50.0 of std, never changes +// imports from v$STD_VERSION of std, never changes import { copy } from "https://deno.land/std@$STD_VERSION/fs/copy.ts"; ```