diff --git a/redis-resp.cabal b/redis-resp.cabal
--- a/redis-resp.cabal
+++ b/redis-resp.cabal
@@ -1,5 +1,5 @@
 name:                redis-resp
-version:             0.2
+version:             0.3
 synopsis:            REdis Serialization Protocol (RESP) implementation.
 license:             OtherLicense
 license-file:        LICENSE
diff --git a/src/Data/Redis.hs b/src/Data/Redis.hs
--- a/src/Data/Redis.hs
+++ b/src/Data/Redis.hs
@@ -3,12 +3,9 @@
 -- file, You can obtain one at http://mozilla.org/MPL/2.0/.
 
 module Data.Redis
-    ( module C
-    , Resp (..)
-    , resp
-    , decode
-    , encode
+    ( module Data.Redis.Resp
+    , module Data.Redis.Command
     ) where
 
 import Data.Redis.Resp
-import Data.Redis.Command as C
+import Data.Redis.Command
diff --git a/src/Data/Redis/Resp.hs b/src/Data/Redis/Resp.hs
--- a/src/Data/Redis/Resp.hs
+++ b/src/Data/Redis/Resp.hs
@@ -5,7 +5,12 @@
 {-# LANGUAGE MultiWayIf        #-}
 {-# LANGUAGE OverloadedStrings #-}
 
-module Data.Redis.Resp where
+module Data.Redis.Resp
+    ( Resp (..)
+    , resp
+    , encode
+    , decode
+    ) where
 
 import Control.Applicative
 import Control.Monad (replicateM)
@@ -21,7 +26,7 @@
 
 -- | 'Resp' defines the various RESP constructors.
 data Resp
-    = Str   !ByteString -- ^ RESP simple atrings
+    = Str   !ByteString -- ^ RESP simple strings
     | Err   !ByteString -- ^ RESP errors
     | Int   !Int64      -- ^ RESP integers
     | Bulk  !ByteString -- ^ RESP bulk strings
