From bda61cd5e5763f66f77236ae6cbf131392d267e0 Mon Sep 17 00:00:00 2001 From: Tom Lehman Date: Sun, 12 Dec 2021 16:55:19 -0500 Subject: [PATCH] Fix typo (#3016) --- contracts/mocks/SafeERC20Helper.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/mocks/SafeERC20Helper.sol b/contracts/mocks/SafeERC20Helper.sol index 9e3442b35..f3bcc3972 100644 --- a/contracts/mocks/SafeERC20Helper.sol +++ b/contracts/mocks/SafeERC20Helper.sol @@ -33,7 +33,7 @@ contract ERC20ReturnFalseMock is Context { } function allowance(address, address) public view returns (uint256) { - require(_dummy == 0); // Duummy read from a state variable so that the function is view + require(_dummy == 0); // Dummy read from a state variable so that the function is view return 0; } }