google-search 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
API changes (from Hackage documentation)
- Language.Google.Search.Simple: orB :: Conjunct e => [e] -> e
+ Language.Google.Search.Simple: orB :: Disjunct e => [e] -> e
Files
google-search.cabal view
@@ -1,5 +1,5 @@ name: google-search-version: 0.1.0.0+version: 0.1.0.1 synopsis: EDSL for Google and GMail search expressions description: Construct well-typed search expressions for use in various Google services.
src/Language/Google/Search/Simple.hs view
@@ -95,8 +95,8 @@ andB = foldr1 (/\) -- | 'orB' is to '\/' what 'or' is to '||'.-orB :: (Conjunct e) => [e] -> e-orB = foldr1 (/\)+orB :: (Disjunct e) => [e] -> e+orB = foldr1 (\/) ------------------------------------------------------------------------ -- * Primitive Terms