File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -127,11 +127,11 @@ noneOf ss = satisfy (flip notElem ss) <?> ("none of " <> show ss)
127
127
128
128
-- | Match one of the Unicode characters in the array.
129
129
oneOfCodePoints :: forall m . Monad m => Array CodePoint -> ParserT String m CodePoint
130
- oneOfCodePoints ss = satisfyCodePoint (flip elem ss) <|> defer \_ -> fail ( " Expected one of " <> show (singleton <$> ss) )
130
+ oneOfCodePoints ss = satisfyCodePoint (flip elem ss) <|> defer \_ -> fail $ " Expected one of " <> show (singleton <$> ss)
131
131
132
132
-- | Match any Unicode character not in the array.
133
133
noneOfCodePoints :: forall m . Monad m => Array CodePoint -> ParserT String m CodePoint
134
- noneOfCodePoints ss = satisfyCodePoint (flip notElem ss) <|> defer \_ -> fail ( " Expected none of " <> show (singleton <$> ss) )
134
+ noneOfCodePoints ss = satisfyCodePoint (flip notElem ss) <|> defer \_ -> fail $ " Expected none of " <> show (singleton <$> ss)
135
135
136
136
-- | Updates a `Position` by adding the columns and lines in `String`.
137
137
updatePosString :: Position -> String -> Position
You can’t perform that action at this time.
0 commit comments