Skip to content

Commit 7732a38

Browse files
authored
Apply suggestions from code review
1 parent 6f91161 commit 7732a38

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

contracts/utils/ReentrancyGuard.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ abstract contract ReentrancyGuard {
6363

6464
/**
6565
* @dev View variant of the `nonReentrant` modifier. Can be used to prevent view functions from being called
66-
* while the internal state of the contract is inconsistent, and invariants do not hold.
66+
* while the internal state of the contract is inconsistent and invariants do not hold.
6767
*
6868
* This being a "view" version of the modifier, it will not set the reentrancy status. This modifier should only
6969
* be used in view functions. Payable and non-payable function should use the standard "nonReentrant" modifier.

contracts/utils/ReentrancyGuardTransient.sol

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

4040
/**
4141
* @dev View variant of the `nonReentrant` modifier. Can be used to prevent view functions from being called
42-
* while the internal state of the contract is inconsistent, and invariants do not hold.
42+
* while the internal state of the contract is inconsistent and invariants do not hold.
4343
*
4444
* This being a "view" version of the modifier, it will not set the reentrancy status. This modifier should only
4545
* be used in view functions. Payable and non-payable function should use the standard "nonReentrant" modifier.

0 commit comments

Comments
 (0)