Skip to content

Commit

Permalink
Fix regex match operator (#336)
Browse files Browse the repository at this point in the history
  • Loading branch information
remeike authored Aug 5, 2024
1 parent e214b75 commit b384871
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Rel8/Expr/Text.hs
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@ infixr 6 ++.

-- | Matches regular expression, case sensitive
--
-- Corresponds to the @~.@ operator.
-- Corresponds to the @~@ operator.
(~.) :: Expr Text -> Expr Text -> Expr Bool
(~.) = binaryOperator "~."
(~.) = binaryOperator "~"
infix 2 ~.


Expand Down

0 comments on commit b384871

Please sign in to comment.