Skip to content

Commit

Permalink
chore: fix some typos in comment (#15503)
Browse files Browse the repository at this point in the history
Signed-off-by: zoupingshi <[email protected]>
Co-authored-by: Julien Genestoux <[email protected]>
  • Loading branch information
zoupingshi and julien51 authored Feb 12, 2025
1 parent 81e097e commit 37cb5a2
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion governance/helpers/crossChain.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ async function simulateDelayCall({ rpcUrl, projectURL, network, moduleCall }) {
// package module args
const [to, value, data, operation] = moduleCall
const moduleArgs = [to, value, data, operation ? 1n : 0n]
console.log(`${name} [${id}]: simulating execution on receving chain`)
console.log(`${name} [${id}]: simulating execution on receiving chain`)

// ethers provider and signer
const forkProvider = new ethers.JsonRpcProvider(rpcUrl)
Expand Down
2 changes: 1 addition & 1 deletion governance/helpers/multisig.js
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ const parseSafeMulticall = async ({ calls, chainId, options }) => {
calldata = data
}

// parse calls correcly for our multisig/dao helpers
// parse calls correctly for our multisig/dao helpers
data.calldata = calldata
data.contractAddress = to
return {
Expand Down
2 changes: 1 addition & 1 deletion governance/tasks/gov.js
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ task('gov:quorum', 'Retrieve current quorum')
})

task('gov:delegate', 'Delagate voting power')
.addParam('delegate', 'The delegate receving the voting power')
.addParam('delegate', 'The delegate receiving the voting power')
.addParam('govAddress', 'The address of the Governor contract')
.addOptionalParam('holder', 'The holder address')
.setAction(async ({ delegate, holder, govAddress }) => {
Expand Down
2 changes: 1 addition & 1 deletion packages/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Packages

Packages in this folder are shared accross multiple apps in this (mono)repo.
Packages in this folder are shared across multiple apps in this (mono)repo.

## Howto

Expand Down
2 changes: 1 addition & 1 deletion packages/hardhat-helpers/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Hardhat helpers

This package contains a bunch of convenience helpers that can be used accross various hardhat project to add various tasks, parse networks file, verification APis, etc.
This package contains a bunch of convenience helpers that can be used across various hardhat project to add various tasks, parse networks file, verification APis, etc.

### Usage

Expand Down
2 changes: 1 addition & 1 deletion subgraph/src/public-lock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ export function handleKeyExtended(event: KeyExtendedEvent): void {
}
}

// from < v10 (before using tokenId accross the board)
// from < v10 (before using tokenId across the board)
export function handleRenewKeyPurchase(event: RenewKeyPurchaseEvent): void {
const lockContract = PublicLock.bind(event.address)

Expand Down

0 comments on commit 37cb5a2

Please sign in to comment.