ghc-imported-from 0.3.0.5 → 0.3.0.6
raw patch · 3 files changed
+6/−4 lines, 3 files
Files
- Language/Haskell/GhcImportedFrom.hs +1/−1
- changelog.md +4/−2
- ghc-imported-from.cabal +1/−1
Language/Haskell/GhcImportedFrom.hs view
@@ -993,7 +993,7 @@ qualifyName :: [QualifiedName] -> Symbol -> QualifiedName qualifyName qualifiedNames name -- = case filter (postfixMatch name) qualifiedNames of- = case filter (name `f`) qualifiedNames of+ = case nub (filter (name `f`) qualifiedNames) of [match] -> match m -> error $ "Could not qualify " ++ name ++ " from these exports: " ++ show qualifiedNames ++ "\n matches: " ++ show m
changelog.md view
@@ -1,8 +1,10 @@+2016-06-01 v0.3.0.6++* Bugfix - remove duplicates from result of qualifiedNames.+ 2016-04-12 v0.3.0.5 * Remove upper bound on pipes-transduce.--pipes-transduce 2016-04-05 v0.3.0.4
ghc-imported-from.cabal view
@@ -1,5 +1,5 @@ name: ghc-imported-from-version: 0.3.0.5+version: 0.3.0.6 synopsis: Find the Haddock documentation for a symbol. description: Given a Haskell module and symbol, determine the URL to the Haddock documentation for that symbol.