@ -26,7 +26,7 @@ contract Pausable is Ownable {
/**
* @dev modifier to allow actions only when the contract IS NOT paused
*/
modifier whenPaused {
modifier whenPaused() {
require(paused);
_;
}