File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ pragma solidity ^0.4.24;
4
4
/**
5
5
* @title Helps contracts guard against reentrancy attacks.
6
6
* @author Remco Bloemen <remco@2π.com>
7
- * @notice If you mark a function `nonReentrant`, you should also
7
+ * @dev If you mark a function `nonReentrant`, you should also
8
8
* mark it `external`.
9
9
*/
10
10
contract ReentrancyGuard {
@@ -16,10 +16,10 @@ contract ReentrancyGuard {
16
16
17
17
/**
18
18
* @dev Prevents a contract from calling itself, directly or indirectly.
19
- * @notice If you mark a function `nonReentrant`, you should also
20
- * mark it `external`. Calling one nonReentrant function from
19
+ * If you mark a function `nonReentrant`, you should also
20
+ * mark it `external`. Calling one ` nonReentrant` function from
21
21
* another is not supported. Instead, you can implement a
22
- * `private` function doing the actual work, and a `external`
22
+ * `private` function doing the actual work, and an `external`
23
23
* wrapper marked as `nonReentrant`.
24
24
*/
25
25
modifier nonReentrant () {
You can’t perform that action at this time.
0 commit comments