diff --git a/contracts/token/ERC20/extensions/ERC20Freezable.sol b/contracts/token/ERC20/extensions/ERC20Freezable.sol index a2ed8fef..e9662fc6 100644 --- a/contracts/token/ERC20/extensions/ERC20Freezable.sol +++ b/contracts/token/ERC20/extensions/ERC20Freezable.sol @@ -9,12 +9,12 @@ import {IERC7943Fungible} from "../../../interfaces/IERC7943.sol"; /** * @dev Extension of {ERC20} that allows to implement a freezing * mechanism that can be managed by an authorized account with the - * {_freezeTokens} and {_unfreezeTokens} functions. + * {_setFrozen} function. * * The freezing mechanism provides the guarantee to the contract owner * (e.g. a DAO or a well-configured multisig) that a specific amount - * of tokens held by an account won't be transferable until those - * tokens are unfrozen using {_unfreezeTokens}. + * of tokens held by an account won't be transferable until the frozen amount + * is reduced using {_setFrozen}. */ abstract contract ERC20Freezable is ERC20 { /// @dev Frozen amount of tokens per address.