Remove one space

This commit is contained in:
n loewen 2023-09-04 17:41:42 -07:00
parent 4dec08afbc
commit 014afb0c86
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ module.exports = class Opts {
if (name in this.opts) return true;
if (name in this.synonyms) {
const syns = this.synonyms[name];
const hits = syns.filter(s => s in this.opts ).length;
const hits = syns.filter(s => s in this.opts).length;
if (hits > 0) { return true; }
}
return false;