summaryrefslogtreecommitdiff
path: root/docs/standard_library.md
diff options
context:
space:
mode:
authorTrivikram Kamat <16024985+trivikr@users.noreply.github.com>2020-09-27 03:11:01 -0700
committerGitHub <noreply@github.com>2020-09-27 12:11:01 +0200
commit13b5cc7673329463a34ce0a315a06423f909ec58 (patch)
tree75df15eb11ecb993e9ebcef866fb6506892adc40 /docs/standard_library.md
parent30252e25b8b833c71603629a2187d177140d7740 (diff)
docs: use $STD_VERSION in std lib import comment (#7707)
Diffstat (limited to 'docs/standard_library.md')
-rw-r--r--docs/standard_library.md2
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";
```