diff --git a/google-search.cabal b/google-search.cabal
--- a/google-search.cabal
+++ b/google-search.cabal
@@ -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.
diff --git a/src/Language/Google/Search/Simple.hs b/src/Language/Google/Search/Simple.hs
--- a/src/Language/Google/Search/Simple.hs
+++ b/src/Language/Google/Search/Simple.hs
@@ -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
