Skip to content

Commit 45dd083

Browse files
authored
Update ReentrancyGuardTransient documentation (#5417)
1 parent bf69b60 commit 45dd083

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contracts/utils/ReentrancyGuardTransient.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ abstract contract ReentrancyGuardTransient {
3838
}
3939

4040
function _nonReentrantBefore() private {
41-
// On the first call to nonReentrant, _status will be NOT_ENTERED
41+
// On the first call to nonReentrant, REENTRANCY_GUARD_STORAGE.asBoolean().tload() will be false
4242
if (_reentrancyGuardEntered()) {
4343
revert ReentrancyGuardReentrantCall();
4444
}

0 commit comments

Comments
 (0)