Skip to content

Commit

Permalink
fix(in.js): fix IN operator use OR instead of AND
Browse files Browse the repository at this point in the history
  • Loading branch information
i.arthur authored and i.arthur committed Mar 24, 2022
1 parent e4dd8b1 commit 0b782ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/operators/in.ts
Expand Up @@ -9,7 +9,7 @@ class InOperator extends Operator {
}

public exec() {
// In operator resembles and and exactly
// In operator resembles or exactly
const orOperator = new OrOperator(this.value);
return orOperator.exec();
}
Expand Down

0 comments on commit 0b782ef

Please sign in to comment.