diff --git a/Useful.cabal b/Useful.cabal
--- a/Useful.cabal
+++ b/Useful.cabal
@@ -1,5 +1,5 @@
 Name:		Useful
-Version:	0.0.2
+Version:	0.0.3
 Cabal-Version:  >= 1.2
 License:	BSD3
 Author:		Daniel Holden
diff --git a/Useful/List.hs b/Useful/List.hs
--- a/Useful/List.hs
+++ b/Useful/List.hs
@@ -73,7 +73,7 @@
 join = implode
 
 
--- | takes n number of items from the front of a list
+-- | takes n number of items from the front of a list, alias of take
 --
 -- > $ takeFor 5 "Hello there people"
 -- > "Hello"
@@ -86,7 +86,7 @@
 	|otherwise = x : takeFor' n xs (c+1)
 
 	
--- | drops n number of items from the front of a list
+-- | drops n number of items from the front of a list, alias of drop
 --
 -- > $ dropFor 5 "Hello there people"
 -- > " there people"
