Browse Source

Merge pull request #603 from elopio/patch-1

fix typo: that -> than
Santiago Palladino 7 years ago
parent
commit
52b2a619c7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/ReentrancyGuard.test.js

+ 1 - 1
test/ReentrancyGuard.test.js

@@ -17,7 +17,7 @@ contract('ReentrancyGuard', function (accounts) {
     await expectThrow(reentrancyMock.countAndCall(attacker.address));
     await expectThrow(reentrancyMock.countAndCall(attacker.address));
   });
   });
 
 
-  // The following are more side-effects that intended behaviour:
+  // The following are more side-effects than intended behaviour:
   // I put them here as documentation, and to monitor any changes
   // I put them here as documentation, and to monitor any changes
   // in the side-effects.
   // in the side-effects.