Change some strings

This commit is contained in:
Daniel Odendahl Jr
2017-09-13 02:08:06 +00:00
parent e0b823062d
commit caba065235
32 changed files with 51 additions and 50 deletions
+1 -1
View File
@@ -22,7 +22,7 @@ module.exports = class PruneCommand extends Command {
type: 'integer',
validate: count => {
if (count < 100 && count > 0) return true;
return 'Count must be from 1-99.';
return 'Invalid count, please enter a number from 1-99.';
}
}
]