diff options
author | David Waern <david.waern@gmail.com> | 2008-04-11 14:29:04 +0000 |
---|---|---|
committer | David Waern <david.waern@gmail.com> | 2008-04-11 14:29:04 +0000 |
commit | 5f879151761fac778ade71c663883571329bc78d (patch) | |
tree | c7b493595ab21a2a6bd0c761f07f5d2a638b0783 | |
parent | 44078266ac5a1cbba503c32e3e2aa22db0e45820 (diff) |
Add a bug to TODO
-rw-r--r-- | TODO | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -20,6 +20,11 @@ ----------------------------------------------------------------------------- -- bugs +* parenthises are sometimes dropped in data declarations, e.g. + data Improving a = IV a (a -> Ordering) + becomes + data Improving a = IV a a -> Ordering + * parser doesn't support doc comments on types in type aliases: type MyInt = Int -- ^ comment |