generics-sop 0.1.0.1 → 0.1.0.2
raw patch · 3 files changed
+6/−6 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- generics-sop.cabal +1/−1
- src/Generics/SOP.hs +4/−4
- src/Generics/SOP/Sing.hs +1/−1
generics-sop.cabal view
@@ -1,5 +1,5 @@ name: generics-sop-version: 0.1.0.1+version: 0.1.0.2 synopsis: Generic Programming using True Sums of Products description: A library to support the definition of generic functions.
src/Generics/SOP.hs view
@@ -196,10 +196,10 @@ -- is to look at a few simple examples. Examples are provided by the following -- packages: ----- * @<http://hackage.haskell.org/packages/basic-sop basic-sop>@ basic examples,--- * @<http://hackage.haskell.org/packages/pretty-sop pretty-sop>@ generic pretty printing,--- * @<http://hackage.haskell.org/packages/lens-sop lens-sop>@ generically computed lenses,--- * @<http://hackage.haskell.org/packages/json-sop json-sop>@ generic JSON conversions.+-- * @<http://hackage.haskell.org/package/basic-sop basic-sop>@ basic examples,+-- * @<http://hackage.haskell.org/package/pretty-sop pretty-sop>@ generic pretty printing,+-- * @<http://hackage.haskell.org/package/lens-sop lens-sop>@ generically computed lenses,+-- * @<http://hackage.haskell.org/package/json-sop json-sop>@ generic JSON conversions. -- -- The generic functions in these packages use a wide variety of the combinators -- that are offered by the library.
src/Generics/SOP/Sing.hs view
@@ -5,7 +5,7 @@ -- | Singleton types corresponding to type-level data structures. -- -- The implementation is similar, but subtly different to that of the--- @<https://hackage.haskell.org/packages/singletons singletons>@ package.+-- @<https://hackage.haskell.org/package/singletons singletons>@ package. -- See the <http://www.andres-loeh.de/TrueSumsOfProducts "True Sums of Products"> -- paper for details. --