1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

docs: use $STD_VERSION in std lib import comment (#7707)

This commit is contained in:
Trivikram Kamat 2020-09-27 03:11:01 -07:00 committed by GitHub
parent 30252e25b8
commit 13b5cc7673
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";
```