Skip to content

Commit

Permalink
Fix typo in constraint example
Browse files Browse the repository at this point in the history
  • Loading branch information
hsyl20 authored Nov 29, 2024
1 parent 4da153d commit e9ea244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/cabal-package-description-file.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1344,7 +1344,7 @@ system-dependent values for these fields.
but ``time-1.12.3`` bumps the lower bound on base to ``>=4.14``. If we
still want to compile with a ``ghc-8.8.*`` version of GHC that ships with
``base-4.13`` and with later GHC versions, then we can use ``time >=1.12
&& (time <1.12.3 || time >1.12.3)``.
&& (<1.12.3 || >1.12.3)``.

Hackage shows deprecated and preferred versions for packages, such as for
`containers <https://hackage.haskell.org/package/containers/preferred>`_
Expand Down

0 comments on commit e9ea244

Please sign in to comment.