diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/contributing/building_from_source.md | 2 | ||||
-rw-r--r-- | docs/contributing/release_schedule.md | 2 | ||||
-rw-r--r-- | docs/runtime.md | 2 | ||||
-rw-r--r-- | docs/runtime/stability.md | 2 | ||||
-rw-r--r-- | docs/standard_library.md | 4 |
5 files changed, 6 insertions, 6 deletions
diff --git a/docs/contributing/building_from_source.md b/docs/contributing/building_from_source.md index 227b42418..96e3e1b88 100644 --- a/docs/contributing/building_from_source.md +++ b/docs/contributing/building_from_source.md @@ -103,7 +103,7 @@ Build with Cargo: # Build: cargo build -vv -# Build errors? Ensure you have latest master and try building again, or if that doesn't work try: +# Build errors? Ensure you have latest main and try building again, or if that doesn't work try: cargo clean && cargo build -vv # Run: diff --git a/docs/contributing/release_schedule.md b/docs/contributing/release_schedule.md index b632a81c9..7242dc164 100644 --- a/docs/contributing/release_schedule.md +++ b/docs/contributing/release_schedule.md @@ -14,7 +14,7 @@ Stable releases can be found on the ### Canary channel In addition to the stable channel described above, canaries are released -multiple times daily (for each commit on master). You can upgrade to the latest +multiple times daily (for each commit on main). You can upgrade to the latest canary release by running: ``` diff --git a/docs/runtime.md b/docs/runtime.md index 6c64c4abf..8d9a8c5c6 100644 --- a/docs/runtime.md +++ b/docs/runtime.md @@ -23,4 +23,4 @@ The TypeScript definitions for the Deno namespaces can be found in the file. The documentation for all of the Deno specific APIs can be found on -[doc.deno.land](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/master/cli/dts/lib.deno.ns.d.ts). +[doc.deno.land](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/main/cli/dts/lib.deno.ns.d.ts). diff --git a/docs/runtime/stability.md b/docs/runtime/stability.md index 6bb60ae5c..9cdc1eea8 100644 --- a/docs/runtime/stability.md +++ b/docs/runtime/stability.md @@ -15,7 +15,7 @@ Passing this flag does a few things: - It enables the use of unstable APIs during runtime. - It adds the - [`lib.deno.unstable.d.ts`](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/master/cli/dts/lib.deno.unstable.d.ts) + [`lib.deno.unstable.d.ts`](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/main/cli/dts/lib.deno.unstable.d.ts) file to the list of TypeScript definitions that are used for type checking. This includes the output of `deno types`. 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"; ``` |