Add infix operators to HLint.
[haskell/symantic.git] / symantic-lib / Language / Symantic / Grammar / Megaparsec.hs
index 29ee3cce3d95c37e799ee08feb789d91320dc67e..424c41a7912d14625746b8a00f0d8c38999f1979 100644 (file)
@@ -131,7 +131,7 @@ instance ParsecC e s => Sym.Gram_AltApp (P.ParsecT e s m) where
        optional = P.optional
        many     = P.many
        some     = P.some
-       skipMany = P.skipMany
+       manySkip = P.skipMany
 instance ParsecC e s => Sym.Gram_CF (P.ParsecT e s m) where
        CF f <& Reg p        = CF $ P.lookAhead f <*> p
        Reg f &> CF p        = CF $ P.lookAhead f <*> p