Improve no u regex

This commit is contained in:
Daniel Odendahl Jr
2019-05-14 15:09:31 +00:00
parent 8badf1540d
commit 5cd13e43b1
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ module.exports = class NoUCommand extends Command {
group: 'single',
memberName: 'no-u',
description: 'no u',
patterns: [/no u/i]
patterns: [/^n+o+ u+$/i]
});
}