diff --git a/Logic/Tags/RegexTag.ts b/Logic/Tags/RegexTag.ts index 22435255c2..50a17ddf8f 100644 --- a/Logic/Tags/RegexTag.ts +++ b/Logic/Tags/RegexTag.ts @@ -145,7 +145,7 @@ export class RegexTag extends TagsFilter { * const v: string = {someJson: ""} * new RegexTag("key", new RegExp(".+")).matchesProperties({"key": null}) // => false * new RegexTag("key", new RegExp(".+")).matchesProperties({"key": undefined}) // => false - * new RegexTag("key", new RegExp(".+")).matchesProperties({"key": v}) // => false + * new RegexTag("key", new RegExp(".+")).matchesProperties({"key": v}) // => true * new RegexTag("key", new RegExp(".+")).matchesProperties({"key": ""}) // => false * * // Show work with non-string objects