Skip to content

Commit

Permalink
docs: fix links (#4871)
Browse files Browse the repository at this point in the history
Needed for the Dev Docs Restructure portal PR to build
  • Loading branch information
jessiemongeon1 authored Jan 29, 2025
1 parent e8bd4a7 commit b6b9b25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions doc/md/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ 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-and-manage).
- [Mainnet deployment](/docs/current/developer-docs/getting-started/deploy-and-manage).
- [Local deployment](https://internetcomputer.org/docs/current/developer-docs/getting-started/deploy-and-manage).
- [Mainnet deployment](https://internetcomputer.org/docs/current/developer-docs/getting-started/deploy-and-manage).

## Register, build, and deploy locally or on the mainnet

Expand Down
4 changes: 2 additions & 2 deletions doc/md/writing-motoko/arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ persistent actor {
};
```

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:
Once your canister is [deployed](https://internetcomputer.org/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 Expand Up @@ -62,4 +62,4 @@ dfx canister call favorite_cities location '(vec {"San Francisco";"Paris";"Rome"

The command uses the Candid interface description syntax `(vec { val1; val2; val3; })` to return a vector of values. For more information about the Candid interface description language, see the [Candid](https://internetcomputer.org/docs/current/developer-docs/smart-contracts/candid/candid-concepts) language guide.

<img src="https://github.com/user-attachments/assets/844ca364-4d71-42b3-aaec-4a6c3509ee2e" alt="Logo" width="150" height="150" />
<img src="https://github.com/user-attachments/assets/844ca364-4d71-42b3-aaec-4a6c3509ee2e" alt="Logo" width="150" height="150" />

0 comments on commit b6b9b25

Please sign in to comment.