Skip to content

Commit

Permalink
docs: fix docs links (#4775)
Browse files Browse the repository at this point in the history
* add recording and checking principals

* fix docs links
  • Loading branch information
jessiemongeon1 authored Nov 21, 2024
1 parent 6473b70 commit a5f51a7
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/md/getting-started/dev-env.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion doc/md/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion doc/md/writing-motoko/arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit a5f51a7

Please sign in to comment.