diff --git a/Crypto/Scrypt.hs b/Crypto/Scrypt.hs
--- a/Crypto/Scrypt.hs
+++ b/Crypto/Scrypt.hs
@@ -2,10 +2,8 @@
 
 -- |Scrypt is a sequential memory-hard key derivation function. This module
 --  provides bindings to a fast C implementation of scrypt, written by Colin
---  Percival. See <http://www.tarsnap.com/scrypt.html> for more information
---  on scrypt.
-module Crypto.Scrypt
-    ( 
+--  Percival. For more information see <http://www.tarsnap.com/scrypt.html>.
+module Crypto.Scrypt ( 
     -- *Parameters to the @scrypt@ function
      ScryptParams, params, defaultParams
     -- * The @scrypt@ key derivation function
@@ -32,7 +30,7 @@
 --  'params' function takes @log_2(N)@ as a parameter. As an example, the
 --  'defaultParams'
 --  
---  @   log_2(N) = 14, r = 8, and p = 1@
+--  @   log_2(N) = 14, r = 8 and p = 1@
 --
 --  lead to 'scrypt' using @128 * 8 * 2^14 = 16M@ bytes of memory.
 --
@@ -47,10 +45,10 @@
        -- ^ @log_2(N)@. Scrypt's @N@ parameter must be a power of two greater
        -- than one, thus it's logarithm to base two must be greater than zero. 
        -> Integer
-       -- ^ The parameter @r@, an integer greater than zero.
+       -- ^ The parameter @r@, must be greater than zero.
        -> Integer
-       -- ^ The parameter @p@, an integer greater than zero. @r@ and @p@
-       --   must satisfy @r * p < 2^30@.
+       -- ^ The parameter @p@, must be greater than zero. @r@ and @p@
+       --   must satisfy @r*p < 2^30@.
        -> Maybe ScryptParams
        -- ^ Returns 'Just' the parameter object for valid arguments,
        --   otherwise 'Nothing'.
@@ -82,16 +80,16 @@
         useAsCStringLen salt $ \(saltPtr, saltLen) ->
         useAsCStringLen pass $ \(passPtr, passLen) ->
         allocaBytes (fromIntegral bufLen) $ \bufPtr -> do
-            throwErrnoIfMinus1_ "c_scrypt" $ c_scrypt
+            throwErrnoIfMinus1_ "crypto_scrypt" $ crypto_scrypt
                 (castPtr passPtr) (fromIntegral passLen)
                 (castPtr saltPtr) (fromIntegral saltLen)
                 (2^logN) (fromIntegral r) (fromIntegral p)
                 bufPtr (fromIntegral bufLen)
             packCStringLen (castPtr bufPtr, fromIntegral bufLen)
 
-foreign import ccall unsafe "crypto_scrypt" c_scrypt
-    :: Ptr Word8 -> CSize
-    -> Ptr Word8 -> CSize
+foreign import ccall unsafe crypto_scrypt
+    :: Ptr Word8 -> CSize         -- password
+    -> Ptr Word8 -> CSize         -- salt
     -> Word64 -> Word32 -> Word32 -- N, r, p
-    -> Ptr Word8 -> CSize
+    -> Ptr Word8 -> CSize         -- result buffer
     -> IO CInt
diff --git a/scrypt.cabal b/scrypt.cabal
--- a/scrypt.cabal
+++ b/scrypt.cabal
@@ -1,5 +1,5 @@
 name:           scrypt
-version:        0.1
+version:        0.1.1
 license:        BSD3
 license-file:   LICENSE
 category:       Cryptography
@@ -15,14 +15,14 @@
 synopsis:
     Stronger password hashing via sequential memory-hard functions.
 description:
-    scrypt provides bindings to Colin Percival's `scrypt` 
+    This package provides bindings to Colin Percival's `scrypt` 
     implementation (<http://www.tarsnap.com/scrypt.html>). Scrypt is a key
     derivation function designed to be far more secure against hardware
     brute-force attacks than alternative functions such as PBKDF2 or bcrypt.
     .
     Details of the scrypt key derivation function are given in a paper by
     Colin Percival, Stronger Key Derivation via Sequential Memory-Hard
-    Functions (<http://www.tarsnap.com/scrypt/scrypt-slides.pdf>).
+    Functions: <http://www.tarsnap.com/scrypt/scrypt.pdf>.
 
 extra-source-files:
     README.markdown,
