Skip to content

Commit

Permalink
Added missing parenthesis to TupleComparisonTranslatorTrait example
Browse files Browse the repository at this point in the history
  • Loading branch information
othercorey committed Jun 19, 2019
1 parent 72ef126 commit 4a9eea2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dialect/TupleComparisonTranslatorTrait.php
Expand Up @@ -31,7 +31,7 @@ trait TupleComparisonTranslatorTrait
* Receives a TupleExpression and changes it so that it conforms to this
* SQL dialect.
*
* It transforms expressions looking like '(a, b) IN ((c, d), (e, f)' into an
* It transforms expressions looking like '(a, b) IN ((c, d), (e, f))' into an
* equivalent expression of the form '((a = c) AND (b = d)) OR ((a = e) AND (b = f))'.
*
* It can also transform transform expressions where the right hand side is a query
Expand Down

0 comments on commit 4a9eea2

Please sign in to comment.