diff --git a/multimap.cabal b/multimap.cabal
--- a/multimap.cabal
+++ b/multimap.cabal
@@ -1,5 +1,5 @@
 Name:           multimap
-Version:        1.2
+Version:        1.2.1
 Synopsis:       A multimap.
 Description:    This is a simple implementation of a multimap, based on "Data.Map".
                 .
@@ -7,10 +7,13 @@
                     @!@ had its arguments flipped. Fixed.
                     Also added @fromMap@.
                 .
-                [@v1.2]
+                [@v1.2@]
                     Added "Data.SetMap", renamed @Multimap@ to "Data.MultiMap".
                     Fixed the type of @delete@. Derive instances for @Data@
                     and @Typeable@.
+                .
+                [@v1.2.1@]
+                    Fixed typos in the documentation.
                 
 License:        MIT
 License-File:   LICENSE
diff --git a/src/Data/MultiMap.hs b/src/Data/MultiMap.hs
--- a/src/Data/MultiMap.hs
+++ b/src/Data/MultiMap.hs
@@ -6,7 +6,15 @@
     -fno-warn-name-shadowing
  #-}
 
--- | A very simple MultiMap, based on 'Data.Map.Map' from the containers package.
+-- |
+-- Module       : Data.MultiMap
+-- Copyright    : (c) Julian Fleischer 2013
+-- License      : MIT (See LICENSE file in cabal package)
+--
+-- Maintainer   : julian.fleischer@fu-berlin.de
+-- Portability  : non-portable (DeriveDataTypeable)
+-- 
+-- A very simple MultiMap, based on 'Data.Map.Map' from the containers package.
 module Data.MultiMap (
 
     -- * MultiMap type
diff --git a/src/Data/SetMap.hs b/src/Data/SetMap.hs
--- a/src/Data/SetMap.hs
+++ b/src/Data/SetMap.hs
@@ -6,7 +6,14 @@
     -fno-warn-name-shadowing
  #-}
 
--- | A SetMap allows the association of multiple values with a single key,
+-- Module       : Data.SetMap
+-- Copyright    : (c) Julian Fleischer 2013
+-- License      : MIT (See LICENSE file in cabal package)
+--
+-- Maintainer   : julian.fleischer@fu-berlin.de
+-- Portability  : non-portable (DeriveDataTypeable)
+--
+-- A SetMap allows the association of multiple values with a single key,
 -- but there are no duplicates per key.
 module Data.SetMap (
 
