diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 03:11:01 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:11:01 +0200 |
commit | 13b5cc7673329463a34ce0a315a06423f909ec58 (patch) | |
tree | 75df15eb11ecb993e9ebcef866fb6506892adc40 /docs/standard_library.md | |
parent | 30252e25b8b833c71603629a2187d177140d7740 (diff) |
docs: use $STD_VERSION in std lib import comment (#7707)
Diffstat (limited to 'docs/standard_library.md')
-rw-r--r-- | docs/standard_library.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/standard_library.md b/docs/standard_library.md index 37ed550f4..319b53b15 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"; ``` |