diff --git a/CHANGES b/CHANGES
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,8 @@
+0.1.1
+
+ - Updated Cabal file to point to a real
+   home page
+
 0.1.0
 
  - Added increment/decrement commands
diff --git a/Network/Starling.hs b/Network/Starling.hs
--- a/Network/Starling.hs
+++ b/Network/Starling.hs
@@ -134,7 +134,7 @@
 
 -- | Increment a value in the cache. The first 'Word64' argument is the
 -- amount by which to increment and the second is the intial value to
--- use of the key does not yet have a value.
+-- use if the key does not yet have a value.
 -- The return value is the updated value in the cache.
 increment :: Connection -> Key -> Word64 -> Word64 -> Result Word64
 increment con key amount init
@@ -143,7 +143,7 @@
 
 -- | Decrement a value in the cache. The first 'Word64' argument is the
 -- amount by which to decrement and the second is the intial value to
--- use of the key does not yet have a value.
+-- use if the key does not yet have a value.
 -- The return value is the updated value in the cache.
 decrement :: Connection -> Key -> Word64 -> Word64 -> Result Word64
 decrement con key amount init
diff --git a/starling.cabal b/starling.cabal
--- a/starling.cabal
+++ b/starling.cabal
@@ -1,5 +1,5 @@
 name:            starling
-version:         0.1.0
+version:         0.1.1
 stability:       Alpha
 
 synopsis:        A memcached client
@@ -9,7 +9,7 @@
                  This implements the new binary protocol,
 		 so it only works with memcached version
                  1.3 and newer.
-homepage:        http://community.haskell.org/~aslatter/code/starling
+homepage:        http://community.haskell.org/~aslatter/starling
 
 category:        Network
 
@@ -18,14 +18,19 @@
 author:          Antoine Latter <aslatter@gmail.com>
 maintainer:      Antoine Latter <aslatter@gmail.com>
 
-cabal-version:   >= 1.6
-
-build-depends:   base == 4.*, binary, bytestring, transformers == 0.1.*
 build-type:      Simple
+cabal-version:   >= 1.6
 
 extra-source-files: CHANGES
 
-exposed-modules:
+source-repository head
+ type:     darcs
+ location: http://community.haskell.org/~aslatter/code/starling
+
+library
+  build-depends:   base == 4.*, binary, bytestring, transformers == 0.1.*
+
+  exposed-modules:
         Network.Starling
         Network.Starling.Core
         Network.Starling.Connection
