Updated example code formatting

This commit is contained in:
Fredrik Dahlgren
2023-03-17 17:32:13 +01:00
parent aad1d94c13
commit cd8c0935e7

View File

@@ -824,11 +824,11 @@ For example, consider the following circuit that computes a users new balance
```jsx
template getNewBalance() {
signal currentBalance;
signal withdrawAmount;
signal output newBalance;
signal currentBalance;
signal withdrawAmount;
signal output newBalance;
newBalance <== currentBalance - withdrawAmount;
newBalance <== currentBalance - withdrawAmount;
}
```