Skip to content

Commit dc14c7a

Browse files
authored
Merge pull request #121 from zhoufanjin/master
chore: fix some comments
2 parents 0f2a50e + 4625fbe commit dc14c7a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/address-table/contracts/ArbitrumVIP.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ contract ArbitrumVIP {
1616
}
1717

1818
function addVIPPoints(uint256 addressIndex) external {
19-
// retreive address from address table
19+
// retrieve address from address table
2020
address addressFromTable = arbAddressTable.lookupIndex(addressIndex);
2121

2222
arbitrumVIPPoints[addressFromTable]++;

packages/address-table/scripts/exec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ async function main() {
5959
const addressIndex = await arbAddressTable.lookup(myAddress)
6060

6161
/**
62-
* From here on out we can use this index instead of our address as a paramter into any contract with affordances to look up out address in the address data.
62+
* From here on out we can use this index instead of our address as a parameter into any contract with affordances to look up out address in the address data.
6363
*/
6464

6565
const txnRes = await arbitrumVIP.addVIPPoints(addressIndex)

packages/delayedInbox-l2msg/scripts/withdrawFunds.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ const main = async () => {
8080
const status = l2TxReceipt.status
8181
if (status == true) {
8282
console.log(
83-
`L2 txn executed!!! 🥳 , you can go to https://bridge.arbitrum.io/ to execute your withdrawal and recieve your funds after challenge period!`
83+
`L2 txn executed!!! 🥳 , you can go to https://bridge.arbitrum.io/ to execute your withdrawal and receive your funds after challenge period!`
8484
)
8585
} else {
8686
console.log(`L2 txn failed, see if your gas is enough?`)

packages/token-withdraw/scripts/exec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ const main = async () => {
114114
const l2Result = await depositRec.waitForL2(l2Provider)
115115
console.log(`Setup complete`)
116116
/**
117-
* The `complete` boolean tells us if the l1 to l2 message was successul
117+
* The `complete` boolean tells us if the l1 to l2 message was successful
118118
*/
119119
l2Result.complete
120120
? console.log(

0 commit comments

Comments
 (0)