Skip to content

Commit 8c618a7

Browse files
committed
Coderabbit and lint
1 parent e851568 commit 8c618a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pages/stack/interop/tutorials/custom-superchain-erc20.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@ The tutorial uses these primary tools:
9595
import {CustomSuperchainToken} from "../src/CustomSuperchainToken.sol";
9696
```
9797

98-
* Change lines 52-54 to get the `CustomSuperchainToken` initialization code.
98+
* Update lines 52-54 to get the `CustomSuperchainToken` initialization code.
9999

100100
```solidity
101101
bytes memory initCode = abi.encodePacked(
102102
type(CustomSuperchainToken).creationCode, abi.encode(ownerAddr_, name, symbol, uint8(decimals))
103103
);
104104
```
105105

106-
* Change line 62 to deploy a `CustomSuperchainToken` contract.
106+
* Modify line 62 to deploy a `CustomSuperchainToken` contract.
107107

108108
```solidity
109109
addr_ = address(new CustomSuperchainToken{salt: _implSalt()}(ownerAddr_, name, symbol, uint8(decimals)));

0 commit comments

Comments
 (0)