diff --git a/servant-auth-token-api.cabal b/servant-auth-token-api.cabal
--- a/servant-auth-token-api.cabal
+++ b/servant-auth-token-api.cabal
@@ -1,5 +1,5 @@
 name:                servant-auth-token-api
-version:             0.1.1.0
+version:             0.1.2.0
 synopsis:            Servant based API for token based authorisation
 description:         Please see README.md
 homepage:            https://github.com/ncrashed/servant-auth-token-api#readme
diff --git a/src/Servant/API/Auth/Token.hs b/src/Servant/API/Auth/Token.hs
--- a/src/Servant/API/Auth/Token.hs
+++ b/src/Servant/API/Auth/Token.hs
@@ -64,8 +64,6 @@
   , authDeletePerm
   -- * Swagger helpers
   , authOperations
-  -- * Reexports
-  , module Reexport
   ) where 
 
 import Control.Lens
@@ -86,7 +84,7 @@
 import Data.Text (Text)
 import qualified Data.Text as T 
 
-import Servant.API.Auth.Token.Pagination as Reexport
+import Servant.API.Auth.Token.Pagination
 import Servant.API.Auth.Token.Internal.DeriveJson 
 import Servant.API.Auth.Token.Internal.Schema
 
@@ -533,6 +531,7 @@
   toSamples _ = singleSample ()
 #endif
 
+-- | Unlifting compile-time permissions into list of run-time permissions
 class PermsList (a :: [Symbol]) where 
   unliftPerms :: forall proxy . proxy a -> [Permission]
 
