Commit fdc8fbaa by Francisco Giordano Committed by GitHub

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

Fix Pausable documentation
parents b07466a4 99887da4
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment