Skip to content

Commit fe68c12

Browse files
authored
Fix spelling (#5049)
1 parent d947fb0 commit fe68c12

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/governance/IGovernor.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ interface IGovernor is IERC165, IERC6372 {
145145
* @dev Emitted when a vote is cast with params.
146146
*
147147
* Note: `support` values should be seen as buckets. Their interpretation depends on the voting module used.
148-
* `params` are additional encoded parameters. Their interpepretation also depends on the voting module used.
148+
* `params` are additional encoded parameters. Their interpretation also depends on the voting module used.
149149
*/
150150
event VoteCastWithParams(
151151
address indexed voter,

scripts/checks/compare-layout.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ for (const name in oldLayout) {
1010
if (name in newLayout) {
1111
const report = getStorageUpgradeReport(oldLayout[name], newLayout[name], {});
1212
if (!report.ok) {
13-
console.log(`Storage layout incompatilibity found in ${name}:`);
13+
console.log(`Storage layout incompatibility found in ${name}:`);
1414
console.log(report.explain());
1515
process.exitCode = 1;
1616
}

0 commit comments

Comments
 (0)