File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,9 +55,9 @@ infix 4 ==.
55
55
-- | Test if two expressions are different (not equal).
56
56
--
57
57
-- This corresponds to the SQL @IS DISTINCT FROM@ operator, and will return
58
- -- @false@ when comparing two @null@ values. This differs from ordinary @= @
59
- -- which would return @null@. This operator is closer to Haskell's '= ='
60
- -- operator. For an operator identical to SQL @= @, see '/=?'.
58
+ -- @false@ when comparing two @null@ values. This differs from ordinary @<> @
59
+ -- which would return @null@. This operator is closer to Haskell's '/ ='
60
+ -- operator. For an operator identical to SQL @<> @, see '/=?'.
61
61
(/=.) :: forall a . Sql DBEq a => Expr a -> Expr a -> Expr Bool
62
62
(/=.) = case nullable @ a of
63
63
Null -> \ ma mb -> isNull ma `ne` isNull mb ||. ma /=? mb
You can’t perform that action at this time.
0 commit comments