Skip to content

Commit 10bc918

Browse files
authored
fix: typos (#923)
* fix: typo
1 parent c9d9a9a commit 10bc918

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

packages/contracts/contracts/arbitrum/L1ArbitrumMessenger.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ import "./IInbox.sol";
2929
import "./IOutbox.sol";
3030

3131
/// @notice L1 utility contract to assist with L1 <=> L2 interactions
32-
/// @dev this is an abstract contract instead of library so the functions can be easily overriden when testing
32+
/// @dev this is an abstract contract instead of library so the functions can be easily overridden when testing
3333
abstract contract L1ArbitrumMessenger {
3434
event TxToL2(address indexed _from, address indexed _to, uint256 indexed _seqNum, bytes _data);
3535

packages/contracts/contracts/arbitrum/L2ArbitrumMessenger.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ pragma solidity ^0.7.6;
2828
import "arbos-precompiles/arbos/builtin/ArbSys.sol";
2929

3030
/// @notice L2 utility contract to assist with L1 <=> L2 interactions
31-
/// @dev this is an abstract contract instead of library so the functions can be easily overriden when testing
31+
/// @dev this is an abstract contract instead of library so the functions can be easily overridden when testing
3232
abstract contract L2ArbitrumMessenger {
3333
address internal constant ARB_SYS_ADDRESS = address(100);
3434

packages/contracts/contracts/staking/Staking.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1013,7 +1013,7 @@ abstract contract Staking is StakingV4Storage, GraphUpgradeable, IStakingBase, M
10131013
}
10141014

10151015
/**
1016-
* @dev Send rewards to the appropiate destination.
1016+
* @dev Send rewards to the appropriate destination.
10171017
* @param _graphToken Graph token
10181018
* @param _amount Number of rewards tokens
10191019
* @param _beneficiary Address of the beneficiary of rewards

packages/contracts/test/unit/gns.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ describe('L1GNS', () => {
667667
it('should transfer signal from one curator to another', async function () {
668668
await transferSignal(subgraph.id, other, another, otherNSignal)
669669
})
670-
it('should fail when transfering to zero address', async function () {
670+
it('should fail when transferring to zero address', async function () {
671671
const tx = gns
672672
.connect(other)
673673
.transferSignal(subgraph.id, ethers.constants.AddressZero, otherNSignal)

packages/contracts/test/unit/staking/allocation.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -836,7 +836,7 @@ describe('Staking:Allocation', () => {
836836
// Update rebate parameters, α = 0, λ = 1
837837
await staking.connect(governor).setRebateParameters(0, 1, 1, 1)
838838

839-
// Succesive collections
839+
// Successive collections
840840
// Indexer gets 100% of the query fees
841841
// Parameters changed so now they are under-rebated and should get more than the available amount but we cap it
842842
// Distributed amount will never catch up due to the initial collection which was less than 100%

0 commit comments

Comments
 (0)