From 99887da49a3b3b545a4b18cfdecf8d53633f0cc9 Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Wed, 6 Sep 2017 15:06:56 -0300 Subject: [PATCH] fix Pausable documentation --- contracts/lifecycle/Pausable.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contracts/lifecycle/Pausable.sol b/contracts/lifecycle/Pausable.sol index 4baba694e9c..ca5f435d6c9 100644 --- a/contracts/lifecycle/Pausable.sol +++ b/contracts/lifecycle/Pausable.sol @@ -16,7 +16,7 @@ contract Pausable is Ownable { /** - * @dev modifier to allow actions only when the contract IS paused + * @dev Modifier to make a function callable only when the contract is not paused. */ modifier whenNotPaused() { require(!paused); @@ -24,7 +24,7 @@ contract Pausable is Ownable { } /** - * @dev modifier to allow actions only when the contract IS NOT paused + * @dev Modifier to make a function callable only when the contract is paused. */ modifier whenPaused() { require(paused);