Browse Source

Typo fix in comments

Getty Ritter 8 years ago
parent
commit
dbba471296
1 changed files with 2 additions and 0 deletions
  1. 2 0
      Data/SCargot/Comments.hs

+ 2 - 0
Data/SCargot/Comments.hs

@@ -48,8 +48,8 @@ import            Data.SCargot.Parse ( Comment
 lineComment :: String -> Comment
 lineComment s = string s >> skipMany (noneOf "\n") >> return ()
 
+-- | Given two strings, a begin and an end delimiter, produce a
+--   parser that matches the beginning delimiter and then ignores
 --   everything until it finds the end delimiter. This does not
 --   consider nesting, so, for example, a comment created with
 --