From 132745d3fa354273ab25ec87b605a24630f5bed3 Mon Sep 17 00:00:00 2001 From: Eric Nordelo Date: Mon, 13 May 2024 12:24:32 +0200 Subject: [PATCH] Update src/token/erc20/erc20.cairo Co-authored-by: Andrew Fleming --- src/token/erc20/erc20.cairo | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/token/erc20/erc20.cairo b/src/token/erc20/erc20.cairo index 2b540c88e..bc7cc5778 100644 --- a/src/token/erc20/erc20.cairo +++ b/src/token/erc20/erc20.cairo @@ -321,7 +321,7 @@ mod ERC20Component { /// Transfers an `amount` of tokens from `from` to `to`, or alternatively mints (or burns) if `from` (or `to`) is /// the zero address. /// - /// NOTe: This function can be extended using the `ERC20HooksTrait`, to add + /// NOTE: This function can be extended using the `ERC20HooksTrait`, to add /// functionality before and/or after the transfer, mint, or burn. /// /// Emits a `Transfer` event.