pliosoft / toml-parse

Haskell library for reading TOML and easily querying it
BSD 3-Clause "New" or "Revised" License
0 stars 1 forks source link

The rbracket combinator does not match properly #5

Closed clord closed 8 years ago

clord commented 8 years ago

Combinator rbracket does not presently match 'it':

   rbracket :: Stream s m Token => ParsecT s u m ()
   rbracket = satisfy
      where it (RightBracketT _) = Just ()
            it _ = Nothing

should be rbracket = satisfy it