Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/guides/advanced/90_advanced_debugging.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You should create the following file in your `$workspaceFolder/.vscode/` called
import os
import lldb

# Read the .env file and store the key-value pairs in a array with format ["key=value"]
# Read the .env file and store the key-value pairs in an array with format ["key=value"]
env_array = []
with open(os.path.join("etc/env/l2-inits/dev.init.env")) as f:
for line in f:
Expand Down Expand Up @@ -64,7 +64,7 @@ Afterwards you need to add something like this to your launch.json:

## Debugging contracts in vscode (using hardhat)

Assuming that you created project in hardhat, that you'd normally test with `hardhat test` - you also also test it with
Assuming that you created project in hardhat, that you'd normally test with `hardhat test` - you also test it with
vscode (which is super powerful - especially as you can have both binaries' debug sessions running in VSCode at the same
time).

Expand Down
2 changes: 1 addition & 1 deletion docs/src/specs/l1_smart_contracts.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ The owner of the L2SharedBridge and the contracts related to it is the Governanc

## Governance

This contract manages calls for all governed zkEVM contracts on L1 and L2. Mostly, it is used for upgradability an
This contract manages calls for all governed zkEVM contracts on L1 and L2. Mostly, it is used for upgradability a
changing critical system parameters. The contract has minimum delay settings for the call execution.

Each upgrade consists of two steps:
Expand Down
2 changes: 1 addition & 1 deletion prover/docs/src/04_flow.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ Finally, even within the same level, there may be different circuit types. Under
different parts of computations. From a purely applied point of view, it mostly means that initially we receive X jobs
of N types, which cause Y jobs of M types, and so on.

So, in addition to the aggregation layer, we also have a circuit ID. A tuple of aggregation round and circuit ID form an
So, in addition to the aggregation layer, we also have a circuit ID. A tuple of aggregation round and circuit ID form a
unique job identifier, which allows us to understand which inputs we should receive, what processing logic we should
run, and which outputs we should produce.

Expand Down
Loading