From 9b4326d91eb7230562f4c3c4eb77909156adc7ee Mon Sep 17 00:00:00 2001 From: Hasan Raza <49759922+hasanza@users.noreply.github.com> Date: Mon, 30 Aug 2021 18:20:35 +0500 Subject: [PATCH] Fixed a typo (#2835) --- contracts/security/ReentrancyGuard.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/security/ReentrancyGuard.sol b/contracts/security/ReentrancyGuard.sol index 067a2c94e..0ceb97dfd 100644 --- a/contracts/security/ReentrancyGuard.sol +++ b/contracts/security/ReentrancyGuard.sol @@ -43,7 +43,7 @@ abstract contract ReentrancyGuard { * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening - * by making the `nonReentrant` function external, and make it call a + * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() {