Skip to content

Commit cf2ccac

Browse files
authored
Merge pull request #1960 from leopardracer/dev
Fix typo in SafeERC20.sol - "Recepient" to "Recipient"
2 parents 01edde5 + f7af3d2 commit cf2ccac

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/src/libraries/SafeERC20.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ library SafeERC20 {
2424

2525
/// @dev Calls transfer() without reverting.
2626
/// @param _token Token to transfer.
27-
/// @param _to Recepient address.
27+
/// @param _to Recipient address.
2828
/// @param _value Amount transferred.
2929
/// @return Whether transfer succeeded or not.
3030
function safeTransfer(IERC20 _token, address _to, uint256 _value) internal returns (bool) {
@@ -35,7 +35,7 @@ library SafeERC20 {
3535
/// @dev Calls transferFrom() without reverting.
3636
/// @param _token Token to transfer.
3737
/// @param _from Sender address.
38-
/// @param _to Recepient address.
38+
/// @param _to Recipient address.
3939
/// @param _value Amount transferred.
4040
/// @return Whether transfer succeeded or not.
4141
function safeTransferFrom(IERC20 _token, address _from, address _to, uint256 _value) internal returns (bool) {

0 commit comments

Comments
 (0)