diff --git a/extra/haddock.css b/extra/haddock.css
--- a/extra/haddock.css
+++ b/extra/haddock.css
@@ -50,7 +50,7 @@
 BODY { 
   -moz-border-radius:5px;
   -webkit-border-radius:5px;
-  width: 90ex;
+  width: 50em;
   margin: 2em auto;
   padding: 0;
   background-color: #ffffff;
diff --git a/snap-server.cabal b/snap-server.cabal
--- a/snap-server.cabal
+++ b/snap-server.cabal
@@ -1,5 +1,5 @@
 name:           snap-server
-version:        0.1.1
+version:        0.1.2
 synopsis:       A fast, iteratee-based, epoll-enabled web server for the Snap Framework
 description:
   This is the first developer prerelease of the Snap framework.  Snap is a
diff --git a/src/Snap/Internal/Http/Server.hs b/src/Snap/Internal/Http/Server.hs
--- a/src/Snap/Internal/Http/Server.hs
+++ b/src/Snap/Internal/Http/Server.hs
@@ -445,7 +445,7 @@
 
         cookies         = maybe []
                                 (catMaybes . map parseCookie)
-                                (Map.lookup "set-cookie" hdrs)
+                                (Map.lookup "cookie" hdrs)
 
         contextPath     = "/"
 
