diff --git a/Data/List/PointedList.hs b/Data/List/PointedList.hs
--- a/Data/List/PointedList.hs
+++ b/Data/List/PointedList.hs
@@ -78,7 +78,7 @@
   error "cannot move to previous element" 
 tryPrevious   (PointedList (l:ls) x rs) = PointedList ls l (x:rs)
 
--- | An alias for 'deleteRight'.
+-- | An alias for 'insertRight'.
 insert :: a -> PointedList a -> PointedList a
 insert = insertRight
 
diff --git a/pointedlist.cabal b/pointedlist.cabal
--- a/pointedlist.cabal
+++ b/pointedlist.cabal
@@ -1,5 +1,5 @@
 Name:          pointedlist
-Version:       0.0.1
+Version:       0.0.2
 Synopsis:      A zipper-like comonad which works as a list, tracking a position.
 Category:      Data
 Description:
