Skip to content

Commit

Permalink
docs: fix wrong links (#761)
Browse files Browse the repository at this point in the history
  • Loading branch information
marvinhagemeister authored Aug 29, 2024
1 parent 5c5f19a commit d8bd254
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 6 deletions.
4 changes: 2 additions & 2 deletions deploy/manual/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ Let's deploy your first application - it should only take a few minutes.
## Install Deno and `deployctl`

If you haven't already, you can
[install the Deno runtime](/runtime/manual/getting_started/installation) using
one of the commands below:
[install the Deno runtime](/runtime/fundamentals/installation) using one of the
commands below:

<deno-tabs group-id="operating-systems">
<deno-tab mac" label="macOS" default>
Expand Down
File renamed without changes
2 changes: 1 addition & 1 deletion runtime/getting_started/first_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ application. Check out our [tutorials](/runtime/tutorials/) and
[examples](/examples/) for more ideas on what to build with Deno.

You can
[learn more about using TypeScript in Deno here](../fundamentals/typescript.md).
[learn more about using TypeScript in Deno here](/runtime/fundamentals/typescript).
1 change: 1 addition & 0 deletions runtime/manual/basics/import_maps.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ title: "Import Maps"
oldUrl:
- /runtime/manual/basics/modules/import_maps/
- /runtime/basics/import_maps/
- /runtime/manual/linking_to_external_code/import_maps
---

In order for Deno to resolve a _bare specifier_ like `"react"` or `"lodash"`, it
Expand Down
2 changes: 2 additions & 0 deletions runtime/manual/basics/vendoring/index.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: "Caching dependencies locally (Vendoring)"
oldUrl:
- /runtime/manual/tools/vendor
---

If your project has external dependencies, you may want to store them locally to
Expand Down
4 changes: 2 additions & 2 deletions runtime/manual/node/npm_specifiers.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ import chalk from "npm:chalk@5";
```

Some packages do not though, but you can specify their types with a
[`@deno-types`](./runtime/fundamentals/typescript.md) directive. For example,
using a
[`@deno-types`](/runtime/fundamentals/typescript) directive. For example, using
a
[`@types`](https://www.typescriptlang.org/docs/handbook/2/type-declarations.html#definitelytyped--types)
package:

Expand Down
2 changes: 2 additions & 0 deletions runtime/manual/tools/unstable_flags.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
---
title: "Unstable Feature Flags"
oldUrl:
- /runtime/tools/unstable_flags/
---

New features of the Deno runtime are often released behind feature flags, so
Expand Down
2 changes: 1 addition & 1 deletion subhosting/manual/quick_start.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ of interacting with the API in this way. However, the techniques shown here will
also work in any other environment capable of executing HTTP requests.

The example code shown here and in future chapters assume that you have
[Deno 1.38 or higher](/runtime/manual/getting_started/installation) installed.
[Deno 1.38 or higher](/runtime/fundamentals/installation) installed.

When working with a REST API, it is useful to store authentication credentials
in the [system environment](/runtime/manual/basics/env_variables), to prevent
Expand Down

0 comments on commit d8bd254

Please sign in to comment.