Fix typo: incompatibile should be incompatible

This commit is contained in:
Nicolas MAUTI 2019-01-03 18:15:27 +01:00 committed by Guillaume Smet
parent 61cddad76d
commit 7fdac4eeb5
1 changed files with 1 additions and 1 deletions

View File

@ -74,7 +74,7 @@ public class BinaryLogicOperatorNode extends AbstractSelectExpression implements
int lhsColumnSpan = getColumnSpan( lhsType, sessionFactory );
if ( lhsColumnSpan != getColumnSpan( rhsType, sessionFactory ) ) {
throw new TypeMismatchException(
"left and right hand sides of a binary logic operator were incompatibile [" +
"left and right hand sides of a binary logic operator were incompatible [" +
lhsType.getName() + " : " + rhsType.getName() + "]"
);
}