Skip to content

Commit

Permalink
fix not match expression
Browse files Browse the repository at this point in the history
  • Loading branch information
Roman Lomonosov committed Jul 12, 2019
1 parent f4682a4 commit f1df8b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion finder/tagged.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func TaggedTermWhere1(term *TaggedTerm) string {
case TaggedTermMatch:
return where.Match("Tag1", term.concat())
case TaggedTermNotMatch:
return fmt.Sprintf("NOT arrayExists((x) -> %s), Tags)", where.Match("x", term.concat()))
return fmt.Sprintf("NOT arrayExists((x) -> %s, Tags)", where.Match("x", term.concat()))
default:
return ""
}
Expand Down

0 comments on commit f1df8b8

Please sign in to comment.