diff options
author | Trivikram Kamat <16024985+trivikr@users.noreply.github.com> | 2020-09-27 03:12:33 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-27 12:12:33 +0200 |
commit | c28757f379fd1141c817b21ce2fe4dd86b29cd8c (patch) | |
tree | c2da4f3be185c144855f6bf9412610363842f413 /docs/runtime.md | |
parent | 13b5cc7673329463a34ce0a315a06423f909ec58 (diff) |
docs: update GitHub doc links to use $CLI_VERSION (#7710)
Diffstat (limited to 'docs/runtime.md')
-rw-r--r-- | docs/runtime.md | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/runtime.md b/docs/runtime.md index f035d75b4..010884968 100644 --- a/docs/runtime.md +++ b/docs/runtime.md @@ -13,16 +13,16 @@ The detailed documentation for implemented Web APIs can be found on [doc.deno.land](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/master/cli/dts/lib.deno.shared_globals.d.ts). Additionally, a full list of the Web APIs which Deno implements is also available -[in the repository](https://github.com/denoland/deno/blob/master/cli/rt/README.md). +[in the repository](https://github.com/denoland/deno/blob/$CLI_VERSION/cli/rt/README.md). The TypeScript definitions for the implemented web APIs can be found in the -[`lib.deno.shared_globals.d.ts`](https://github.com/denoland/deno/blob/master/cli/dts/lib.deno.shared_globals.d.ts) +[`lib.deno.shared_globals.d.ts`](https://github.com/denoland/deno/blob/$CLI_VERSION/cli/dts/lib.deno.shared_globals.d.ts) and -[`lib.deno.window.d.ts`](https://github.com/denoland/deno/blob/master/cli/dts/lib.deno.window.d.ts) +[`lib.deno.window.d.ts`](https://github.com/denoland/deno/blob/$CLI_VERSION/cli/dts/lib.deno.window.d.ts) files. Definitions that are specific to workers can be found in the -[`lib.deno.worker.d.ts`](https://github.com/denoland/deno/blob/master/cli/dts/lib.deno.worker.d.ts) +[`lib.deno.worker.d.ts`](https://github.com/denoland/deno/blob/$CLI_VERSION/cli/dts/lib.deno.worker.d.ts) file. ## `Deno` global @@ -32,7 +32,7 @@ It has the APIs for reading from files, opening TCP sockets, and executing subprocesses, etc. The TypeScript definitions for the Deno namespaces can be found in the -[`lib.deno.ns.d.ts`](https://github.com/denoland/deno/blob/master/cli/dts/lib.deno.ns.d.ts) +[`lib.deno.ns.d.ts`](https://github.com/denoland/deno/blob/$CLI_VERSION/cli/dts/lib.deno.ns.d.ts) file. The documentation for all of the Deno specific APIs can be found on |