diff --git a/docs/tutorials/build-and-run-a-contract.mdx b/docs/tutorials/build-and-run.mdx similarity index 66% rename from docs/tutorials/build-and-run-a-contract.mdx rename to docs/tutorials/build-and-run.mdx index 9732320d..922acfeb 100644 --- a/docs/tutorials/build-and-run-a-contract.mdx +++ b/docs/tutorials/build-and-run.mdx @@ -22,10 +22,9 @@ target/wasm32-unknown-unknown/release/[project-name].wasm If you have [`soroban-cli`] installed, you can invoke contract functions in a WASM file. -Using the code we wrote in [Write a Contract](write-a-contract.mdx) and the the -resulting `.wasm` file we built in [Build a WASM File](build-a-wasm-file.mdx) -run the following command to invoke the `hello` function with a single argument -`"friend"`. +Using the code we wrote in [Write a Contract] and the the resulting `.wasm` file +we built in [Build and Run] run the following command to invoke the `hello` +function with a single argument `"friend"`. ```sh soroban-cli invoke \ @@ -41,4 +40,6 @@ The following output should appear. ["Hello","friend"] ``` -[`soroban-cli`]: setup#install-the-soroban-cli +[`soroban-cli`]: ../getting-started/setup#install-the-soroban-cli +[Write a Contract]: write-a-contract +[Build and Run]: build-and-run