servant-serf 0.0.1 → 0.0.2
raw patch · 2 files changed
+6/−4 lines, 2 files
Files
- app/ApiModule.hs +5/−3
- servant-serf.cabal +1/−1
app/ApiModule.hs view
@@ -95,9 +95,11 @@ <|> skipLineComment "--" spaceConsumer :: Atto.Parser () -spaceConsumer = Atto.skipSpace- *> Atto.skipMany comment - *> Atto.skipSpace+spaceConsumer = Atto.skipMany singleSpaceConsumer+ where+ singleSpaceConsumer =+ (Atto.skipMany1 $ Atto.skip isSpace) + <|> comment parserModule :: Atto.Parser Module parserModule = do
servant-serf.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.12 name: servant-serf-version: 0.0.1+version: 0.0.2 license: MIT license-file: LICENSE maintainer: Zachary Churchill <zachary@itpro.tv>