Merge pull request #428 from frangio/fix-425-pausable-docs

Fix Pausable documentation
pull/440/head
Francisco Giordano 8 years ago committed by GitHub
commit fdc8fbaa45
  1. 4
      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() { modifier whenNotPaused() {
require(!paused); 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() { modifier whenPaused() {
require(paused); require(paused);

Loading…
Cancel
Save