diff --git a/doc/md/getting-started/quickstart.md b/doc/md/getting-started/quickstart.md index 15549953af7..061812ca07a 100644 --- a/doc/md/getting-started/quickstart.md +++ b/doc/md/getting-started/quickstart.md @@ -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 diff --git a/doc/md/writing-motoko/arguments.md b/doc/md/writing-motoko/arguments.md index 4eabf721aeb..d1e2d748819 100644 --- a/doc/md/writing-motoko/arguments.md +++ b/doc/md/writing-motoko/arguments.md @@ -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" @@ -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. -Logo \ No newline at end of file +Logo