Skip to content

Commit

Permalink
Merge pull request #90 from princemaple/master
Browse files Browse the repository at this point in the history
Bug fix
  • Loading branch information
mvoidex committed Aug 23, 2013
2 parents fd114e5 + b736dd2 commit b67e333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ModuleInspector.hs
Expand Up @@ -142,7 +142,7 @@ defInfo (H.PatBind loc pat _ _ _) = map (\name -> DeclarationInfo loc "function"
names (H.PNPlusK n _) = [n]
names (H.PInfixApp l _ r) = names l ++ names r
names (H.PApp _ ns) = concatMap names ns
names (H.PTuple ns) = concatMap names ns
names (H.PTuple _ ns) = concatMap names ns
names (H.PList ns) = concatMap names ns
names (H.PParen n) = names n
names (H.PRec _ pf) = concatMap fieldNames pf
Expand Down

0 comments on commit b67e333

Please sign in to comment.