From c019e7c5bb28c7fceb6d0678580c07e8833b1dc1 Mon Sep 17 00:00:00 2001 From: silencio <87545449+silencioanon@users.noreply.github.com> Date: Mon, 23 May 2022 19:57:57 +0200 Subject: [PATCH] Fix typo causing broken URL in ERC20Snapshot comment (#3428) --- contracts/token/ERC20/extensions/ERC20Snapshot.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC20/extensions/ERC20Snapshot.sol b/contracts/token/ERC20/extensions/ERC20Snapshot.sol index d5acaa2f0..a28b638b9 100644 --- a/contracts/token/ERC20/extensions/ERC20Snapshot.sol +++ b/contracts/token/ERC20/extensions/ERC20Snapshot.sol @@ -41,7 +41,7 @@ import "../../../utils/Counters.sol"; abstract contract ERC20Snapshot is ERC20 { // Inspired by Jordi Baylina's MiniMeToken to record historical balances: - // https://github.com/Giveth/minimd/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol + // https://github.com/Giveth/minime/blob/ea04d950eea153a04c51fa510b068b9dded390cb/contracts/MiniMeToken.sol using Arrays for uint256[]; using Counters for Counters.Counter;