Skip to content

Commit

Permalink
refactor: fix spelling errors
Browse files Browse the repository at this point in the history
Signed-off-by: Bryan Cole <[email protected]>
  • Loading branch information
ColePBryan committed Aug 17, 2023
1 parent d8795c7 commit 28210a3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Escrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ contract Escrow {
}

// Stores how much escrow each sender has deposited for each receiver, as well as thawing information
mapping(address sender => mapping(address reciever => EscrowAccount escrowAccount))
mapping(address sender => mapping(address receiver => EscrowAccount escrowAccount))
public escrowAccounts;
// Map of signer to authorized signer information
mapping(address signer => SenderAuthorization authorizedSigner)
Expand Down
2 changes: 1 addition & 1 deletion src/IStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.18;

/**
* @title IStaking
* @dev This interface is intended to mock the neccessary functions of the `Staking` contract while using a
* @dev This interface is intended to mock the necessary functions of the `Staking` contract while using a
* version of solidity consistent with the project.
* @notice When deploying this interface should be attached to the `Staking` contract.
*/
Expand Down

0 comments on commit 28210a3

Please sign in to comment.