Skip to content

Commit

Permalink
Remove links to pvp.haskell.org
Browse files Browse the repository at this point in the history
  • Loading branch information
philderbeast committed Nov 25, 2024
1 parent e052a1a commit 8310012
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Cabal/src/Distribution/PackageDescription/Check/Warning.hs
Original file line number Diff line number Diff line change
Expand Up @@ -1334,7 +1334,7 @@ ppExplanation (LEQUpperBounds ct names) =
++ separator
++ List.intercalate separator names
++ "\n"
++ "Please use less than (<) for upper bounds. There is more information at https://pvp.haskell.org/"
++ "Please use less than (<) for upper bounds."
ppExplanation (TrailingZeroUpperBounds ct names) =
let separator = "\n - "
in "On "
Expand All @@ -1344,7 +1344,7 @@ ppExplanation (TrailingZeroUpperBounds ct names) =
++ separator
++ List.intercalate separator names
++ "\n"
++ "Please avoid trailing zeros for upper bounds. There is more information at https://pvp.haskell.org/"
++ "Please avoid trailing zeros for upper bounds."
ppExplanation (GTLowerBounds ct names) =
let separator = "\n - "
in "On "
Expand All @@ -1354,7 +1354,7 @@ ppExplanation (GTLowerBounds ct names) =
++ separator
++ List.intercalate separator names
++ "\n"
++ "Please use greater than or equals (>=) for lower bounds. There is more information at https://pvp.haskell.org/"
++ "Please use greater than or equals (>=) for lower bounds."
ppExplanation (SuspiciousFlagName invalidFlagNames) =
"Suspicious flag names: "
++ unwords invalidFlagNames
Expand Down

0 comments on commit 8310012

Please sign in to comment.