浏览代码

Typo fix in comments

Getty Ritter 8 年之前
父节点
当前提交
dbba471296
共有 1 个文件被更改,包括 2 次插入0 次删除
  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
 --