From a5f51a7fffcd393f562bdaa8bccca65dd3bae844 Mon Sep 17 00:00:00 2001 From: Jessie Mongeon <133128541+jessiemongeon1@users.noreply.github.com> Date: Thu, 21 Nov 2024 14:44:24 -0500 Subject: [PATCH] docs: fix docs links (#4775) * add recording and checking principals * fix docs links --- doc/md/getting-started/dev-env.md | 2 +- doc/md/getting-started/quickstart.md | 2 +- doc/md/writing-motoko/arguments.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/md/getting-started/dev-env.md b/doc/md/getting-started/dev-env.md index 4d7c8a61418..ea923eba016 100644 --- a/doc/md/getting-started/dev-env.md +++ b/doc/md/getting-started/dev-env.md @@ -44,7 +44,7 @@ Before you start developing Motoko, verify the following: - [x] You have a command line interface (CLI) window open. This window is also referred to as the 'terminal' window. -- [x] You have downloaded and installed the IC SDK package as described in the [installing the IC SDK](/docs/current/developer-docs/getting-started/install/) page. +- [x] You have downloaded and installed the IC SDK package as described in the [installing the IC SDK](/docs/current/developer-docs/getting-started/install) page. - [x] You have a code editor installed. The [VS Code IDE](https://code.visualstudio.com/download) (with the [Motoko extension](https://marketplace.visualstudio.com/items?itemName=dfinity-foundation.vscode-motoko)) is a popular choice. diff --git a/doc/md/getting-started/quickstart.md b/doc/md/getting-started/quickstart.md index ed5912e5fce..ea2f52183bb 100644 --- a/doc/md/getting-started/quickstart.md +++ b/doc/md/getting-started/quickstart.md @@ -73,7 +73,7 @@ actor { ## Starting the deployment environment Start the Internet Computer for local development or check your connection to the Internet Computer for network deployment: -- [Local deployment](/docs/current/developer-docs/getting-started/deploy/deploy-and-manage). +- [Local deployment](/docs/current/developer-docs/getting-started/deploy-and-manage). - [Mainnet deployment](/docs/current/developer-docs/getting-started/deploy-and-manage). ## Register, build, and deploy locally or on the mainnet diff --git a/doc/md/writing-motoko/arguments.md b/doc/md/writing-motoko/arguments.md index 1d1fcb27f84..e0419ceba9b 100644 --- a/doc/md/writing-motoko/arguments.md +++ b/doc/md/writing-motoko/arguments.md @@ -20,7 +20,7 @@ public func location(city : Text) : async Text { }; ``` -Once your canister is [deployed](/docs/current/developer-docs/getting-started/deploy/local), you can call the `location` method in the program and pass your `city` argument of type [`Text`](../base/Text.md) by running the following command: +Once your canister is [deployed](/docs/current/developer-docs/getting-started/deploy-and-manage), you can call the `location` method in the program and pass your `city` argument of type [`Text`](../base/Text.md) by running the following command: ``` dfx canister call location_hello_backend location "San Francisco"