Skip to content

Commit

Permalink
Merge pull request jgm#442 from trofi/master
Browse files Browse the repository at this point in the history
pandoc.cabal: fix typo in zlib's upper bound '<= 0.6' should be '< 0.6'
  • Loading branch information
jgm committed Mar 10, 2012
2 parents d154aff + b7c13f1 commit b431462
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pandoc.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ Library
json >= 0.4 && < 0.6,
tagsoup >= 0.12.5 && < 0.13,
base64-bytestring >= 0.1 && < 0.2,
zlib >= 0.5 && <= 0.6,
zlib >= 0.5 && < 0.6,
highlighting-kate >= 0.5.0.2 && < 0.6,
temporary >= 1.1 && < 1.2
if impl(ghc >= 6.10)
Expand Down Expand Up @@ -311,7 +311,7 @@ Executable pandoc
json >= 0.4 && < 0.6,
tagsoup >= 0.12.5 && < 0.13,
base64-bytestring >= 0.1 && < 0.2,
zlib >= 0.5 && <= 0.6,
zlib >= 0.5 && < 0.6,
highlighting-kate >= 0.5.0.2 && < 0.6,
temporary >= 1.1 && < 1.2
if impl(ghc >= 6.10)
Expand Down Expand Up @@ -369,7 +369,7 @@ Executable test-pandoc
json >= 0.4 && < 0.6,
tagsoup >= 0.12.5 && < 0.13,
base64-bytestring >= 0.1 && < 0.2,
zlib >= 0.5 && <= 0.6,
zlib >= 0.5 && < 0.6,
highlighting-kate >= 0.5.0.2 && < 0.6,
temporary >= 1.1 && < 1.2
if impl(ghc >= 6.10)
Expand Down

0 comments on commit b431462

Please sign in to comment.