Skip to content

Commit 1a0dcd5

Browse files
committed
hopefully fixing conflicts v2
1 parent 8e45447 commit 1a0dcd5

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

docs/docs/developers/guides/smart_contracts/cross_chain_communication.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ sidebar_position: 7
55
description: Learn how to communicate with L1 contracts through portals in your Aztec smart contracts.
66
---
77

8-
Follow the [token bridge tutorial](../../../../../developers/tutorials/js_tutorials/token_bridge.md) for hands-on experience writing and deploying a Portal contract.
8+
Follow the [token bridge tutorial](../../tutorials/js_tutorials/token_bridge.md) for hands-on experience writing and deploying a Portal contract.
99

1010
## Passing data to the rollup
1111

docs/docs/developers/guides/smart_contracts/define_functions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ Internal functions are functions that are only callable within the same contract
5151

5252
Mark an internal function with the `#[internal]` attribute.
5353

54-
#include_code add_to_tally_public noir-projects/noir-contracts/contracts/app/easy_private_voting_contract/src/main.nr rust
54+
#include_code add_to_tally_public noir-projects/noir-contracts/contracts/app/private_voting_contract/src/main.nr rust
5555

5656
## Initializer Functions
5757

docs/docs/developers/guides/smart_contracts/index.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@ help you write Noir programs to deploy on the Aztec network.
2727
aztec = { git="https://github.com/AztecProtocol/aztec-packages/", tag="#include_aztec_version", directory="noir-projects/aztec-nr/aztec" }
2828
```
2929

30-
2. [Write your contracts](./writing_contracts/index.mdx).
31-
3. [Profile](./profiling_transactions.md) the private functions in your contract to get
30+
2. [Profile](./advanced/profiling_transactions.md) the private functions in your contract to get
3231
a sense of how long generating client side proofs will take
33-
4. Write unit tests [directly in Noir](testing.md) and end-to-end
32+
3. Write unit tests [directly in Noir](testing.md) and end-to-end
3433
tests [with TypeScript](../js_apps/test.md)
35-
5. [Compile](how_to_compile_contract.md) your contract
36-
6. [Deploy](../js_apps/deploy_contract.md) your contract with Aztec.js
34+
4. [Compile](how_to_compile_contract.md) your contract
35+
5. [Deploy](../js_apps/deploy_contract.md) your contract with Aztec.js
3736

3837
## Section Contents
3938

docs/docs/developers/guides/smart_contracts/structure_project.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ This guide explains how to set up and structure your project for Aztec smart con
99

1010
## Before you start
1111

12-
You should have installed the sandbox, which includes local development tools, as described in [the getting started guide](../../getting_started.md).
12+
You should have installed the sandbox, which includes local development tools, as described in [the getting started guide](../../getting_started/getting_started.md).
1313

1414
## Setup
1515

0 commit comments

Comments
 (0)