diff options
Diffstat (limited to 'docs/standard_library.md')
-rw-r--r-- | docs/standard_library.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/standard_library.md b/docs/standard_library.md index b2110b6eb..36006d3ee 100644 --- a/docs/standard_library.md +++ b/docs/standard_library.md @@ -14,11 +14,11 @@ Deno is released. We strongly suggest to always use imports with pinned version of standard library to avoid unintended changes. For example, rather than linking to the -master branch of code, which may change at any time, potentially causing +default branch of code, which may change at any time, potentially causing compilation errors or unexpected behavior: ```typescript -// imports from master, this should be avoided +// import the latest release, this should be avoided import { copy } from "https://deno.land/std/fs/copy.ts"; ``` |