From 682def9f898d0177aeb7b2567a4039af7aac4d6e Mon Sep 17 00:00:00 2001 From: Evert0x <35029353+Evert0x@users.noreply.github.com> Date: Thu, 11 Mar 2021 17:28:26 +0100 Subject: [PATCH] Typo in ERC20 constructor docstring (#2581) --- contracts/token/ERC20/ERC20.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/token/ERC20/ERC20.sol b/contracts/token/ERC20/ERC20.sol index edb5778bd..1c3fe308f 100644 --- a/contracts/token/ERC20/ERC20.sol +++ b/contracts/token/ERC20/ERC20.sol @@ -46,7 +46,7 @@ contract ERC20 is Context, IERC20, IERC20Metadata { * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * - * All three of these values are immutable: they can only be set once during + * All two of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) {