summaryrefslogtreecommitdiff
path: root/docs/standard_library.md
diff options
context:
space:
mode:
authorLuca Casonato <lucacasonato@yahoo.com>2021-02-19 15:58:19 +0100
committerGitHub <noreply@github.com>2021-02-19 15:58:19 +0100
commit4f80587d26891f783b1a7a46b0f3273def49cd6e (patch)
treee47ed14559f7af33de7e8c561438fa00b2b0b4db /docs/standard_library.md
parente3fe4be83b7424f5530430f1b462f07a71e55b65 (diff)
chore: rename default branch to main (#9503)
Diffstat (limited to 'docs/standard_library.md')
-rw-r--r--docs/standard_library.md4
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";
```