diff options
author | takutoaoi <47185462+takutoaoi@users.noreply.github.com> | 2020-07-23 23:05:36 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-23 10:05:36 -0400 |
commit | 090455936c892b6f2dfa425be9b1cdfb4c63af4a (patch) | |
tree | ecc1450b58a65419cbac19ac87fecb4cdc95a65a /docs/runtime.md | |
parent | b449964d1a8d87d53350c0f9adcf1227e6fd3eef (diff) |
docs: Fix broken links (#6853)
Diffstat (limited to 'docs/runtime.md')
-rw-r--r-- | docs/runtime.md | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/runtime.md b/docs/runtime.md index 50cca6def..2b9d66263 100644 --- a/docs/runtime.md +++ b/docs/runtime.md @@ -10,19 +10,19 @@ For APIs where a web standard already exists, like `fetch` for HTTP requests, Deno uses these rather than inventing a new proprietary API. 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/js/lib.deno.shared_globals.d.ts). +[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/js/web/README.md). +[in the repository](https://github.com/denoland/deno/blob/master/cli/js2/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/js/lib.deno.shared_globals.d.ts) +[`lib.deno.shared_globals.d.ts`](https://github.com/denoland/deno/blob/master/cli/dts/lib.deno.shared_globals.d.ts) and -[`lib.deno.window.d.ts`](https://github.com/denoland/deno/blob/master/cli/js/lib.deno.window.d.ts) +[`lib.deno.window.d.ts`](https://github.com/denoland/deno/blob/master/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/js/lib.deno.worker.d.ts) +[`lib.deno.worker.d.ts`](https://github.com/denoland/deno/blob/master/cli/dts/lib.deno.worker.d.ts) file. ## `Deno` global @@ -32,8 +32,8 @@ 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/js/lib.deno.ns.d.ts) +[`lib.deno.ns.d.ts`](https://github.com/denoland/deno/blob/master/cli/dts/lib.deno.ns.d.ts) 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/js/lib.deno.ns.d.ts). +[doc.deno.land](https://doc.deno.land/https/raw.githubusercontent.com/denoland/deno/master/cli/dts/lib.deno.ns.d.ts). |