From 41c4be381fff1294f29693573da9f818322e6d94 Mon Sep 17 00:00:00 2001 From: Ikko Ashimine Date: Thu, 7 Oct 2021 23:23:31 +0900 Subject: [PATCH] Fix typo in AToken.sol recepient -> recipient --- contracts/tokenization/AToken.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/tokenization/AToken.sol b/contracts/tokenization/AToken.sol index 943aeb7..ed9f394 100644 --- a/contracts/tokenization/AToken.sol +++ b/contracts/tokenization/AToken.sol @@ -173,7 +173,7 @@ contract AToken is ERC20, ERC20Detailed { /** * @dev redirects the interest generated to a target address. * when the interest is redirected, the user balance is added to - * the recepient redirected balance. + * the recipient redirected balance. * @param _to the address to which the interest will be redirected **/ function redirectInterestStream(address _to) external { @@ -183,7 +183,7 @@ contract AToken is ERC20, ERC20Detailed { /** * @dev redirects the interest generated by _from to a target address. * when the interest is redirected, the user balance is added to - * the recepient redirected balance. The caller needs to have allowance on + * the recipient redirected balance. The caller needs to have allowance on * the interest redirection to be able to execute the function. * @param _from the address of the user whom interest is being redirected * @param _to the address to which the interest will be redirected