Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions contracts/collect/base/BaseFeeCollectModule.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ abstract contract BaseFeeCollectModule is

/**
* @dev Processes a collect by:
* 1. Validating that collect action meets all needded criteria
* 2. Processing the collect action either with or withour referral
* 1. Validating that collect action meets all needed criteria
* 2. Processing the collect action either with or without referral
*
* @inheritdoc ICollectModule
*/
Expand Down Expand Up @@ -266,7 +266,7 @@ abstract contract BaseFeeCollectModule is
}

/**
* @dev Tranfers the fee to recipient(-s)
* @dev Transfers the fee to recipient(-s)
*
* Override this to add additional functionality (e.g. multiple recipients)
*
Expand All @@ -291,7 +291,7 @@ abstract contract BaseFeeCollectModule is
}

/**
* @dev Tranfers the part of fee to referral(-s)
* @dev Transfers the part of fee to referral(-s)
*
* Override this to add additional functionality (e.g. multiple referrals)
*
Expand Down