Skip to content

Commit

Permalink
Updated example code formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
fegge committed Mar 17, 2023
1 parent aad1d94 commit cd8c093
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -824,11 +824,11 @@ For example, consider the following circuit that computes a user’s 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;
}
```
Expand Down

0 comments on commit cd8c093

Please sign in to comment.