Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #372

Open
wants to merge 9 commits into
base: main
Choose a base branch
from
Open
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
2 changes: 1 addition & 1 deletion contracts/interfaces/IPolygonZkEVMErrors.sol
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ interface IPolygonZkEVMErrors {
error NewPendingStateTimeoutMustBeLower();

/**
* @dev Thrown when attempting to set a new multiplier batch fee in a invalid range of values
* @dev Thrown when attempting to set a new multiplier batch fee in an invalid range of values
*/
error InvalidRangeMultiplierBatchFee();

Expand Down
4 changes: 2 additions & 2 deletions contracts/v2/consensus/zkEVM/PolygonZkEVMExistentEtrog.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ contract PolygonZkEVMExistentEtrog is PolygonRollupBaseEtrog {
hex"df2a8080944d5cf5032b2a844602278b01199ed191a86c93ff8080821092808000000000000000000000000000000000000000000000000000000005ca1ab1e000000000000000000000000000000000000000000000000000000005ca1ab1e01bff";

/**
* @dev Emitted when the system is updated to a etrog using this contract, contain the set up etrog transaction
* @dev Emitted when the system is updated to an etrog using this contract, contain the set up etrog transaction
*/
event UpdateEtrogSequence(
uint64 numBatch,
Expand Down Expand Up @@ -66,7 +66,7 @@ contract PolygonZkEVMExistentEtrog is PolygonRollupBaseEtrog {

/**
* note This initializer will be called instead of the PolygonRollupBase
* This is a especial initializer since the zkEVM it's an already created network
* This is an especial initializer since the zkEVM it's an already created network
* @param _admin Admin address
* @param _trustedSequencer Trusted sequencer address
* @param _trustedSequencerURL Trusted sequencer URL
Expand Down
2 changes: 1 addition & 1 deletion contracts/v2/interfaces/IPolygonRollupManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ interface IPolygonRollupManager {
error NewPendingStateTimeoutMustBeLower();

/**
* @dev Thrown when attempting to set a new multiplier batch fee in a invalid range of values
* @dev Thrown when attempting to set a new multiplier batch fee in an invalid range of values
*/
error InvalidRangeMultiplierBatchFee();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ Emitted when the contract is initialized, contain the first sequenced transactio
)
```

Emitted when a aggregator verifies batches
Emitted when an aggregator verifies batches

### SetTrustedSequencer
```solidity
Expand Down
4 changes: 2 additions & 2 deletions docs/v2/consensus/zkEVM/PolygonZkEVMExistentEtrog.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ To enter and exit of the L2 network will be used a PolygonZkEVMBridge smart cont
) external
```
note This initializer will be called instead of the PolygonRollupBase
This is a especial initializer since the zkEVM it's an already created network
This is an especial initializer since the zkEVM it's an already created network


#### Parameters:
Expand All @@ -56,5 +56,5 @@ This is a especial initializer since the zkEVM it's an already created network
)
```

Emitted when the system is updated to a etrog using this contract, contain the set up etrog transaction
Emitted when the system is updated to an etrog using this contract, contain the set up etrog transaction

2 changes: 1 addition & 1 deletion docs/v2/consensus/zkEVM/PolygonZkEVMV2Existent.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ To enter and exit of the L2 network will be used a PolygonZkEVMBridge smart cont
) external
```
note This initializer will be called instead of the PolygonRollupBase
This is a especial initializer since the zkEVM it's an already created network
This is an especial initializer since the zkEVM it's an already created network


#### Parameters:
Expand Down
2 changes: 1 addition & 1 deletion docs/v2/lib/PolygonRollupBase.md
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ Emitted when forced batches are sequenced by not the trusted sequencer
)
```

Emitted when a aggregator verifies batches
Emitted when an aggregator verifies batches

### SetTrustedSequencer
```solidity
Expand Down