From dc6f9107d5d75bf9a48fa18921ec0eeb001d5de9 Mon Sep 17 00:00:00 2001
From: "francesco.miliani" <75777914+francescomiliani@users.noreply.github.com>
Date: Mon, 22 Jan 2024 19:19:47 +0100
Subject: [PATCH] Update IERC20HoldableToken.sol

Fix a typo
---
 contracts/interface/IERC20HoldableToken.sol | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/contracts/interface/IERC20HoldableToken.sol b/contracts/interface/IERC20HoldableToken.sol
index 9431dc66..2fa53e37 100644
--- a/contracts/interface/IERC20HoldableToken.sol
+++ b/contracts/interface/IERC20HoldableToken.sol
@@ -43,7 +43,7 @@ interface IERC20HoldableToken is IERC20 {
      @notice Called by the sender to hold some tokens for a recipient that the sender can not release back to themself until after the expiration date.
      @param holdId a unique identifier for the hold.
      @param recipient optional account the tokens will be transferred to on execution. If a zero address, the recipient must be specified on execution of the hold.
-     @param notary account that can execute the hold. Typically the recipient but can be a third party or a smart contact.
+     @param notary account that can execute the hold. Typically the recipient but can be a third party or a smart contract.
      @param amount of tokens to be transferred to the recipient on execution. Must be a non zero amount.
      @param expirationDateTime UNIX epoch seconds the held amount can be released back to the sender by the sender. Past dates are allowed.
      @param lockHash optional keccak256 hash of a lock preimage. An empty hash will not enforce the hash lock when the hold is executed.