packages feed

Useful 0.0.2 → 0.0.3

raw patch · 2 files changed

+3/−3 lines, 2 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

Useful.cabal view
@@ -1,5 +1,5 @@ Name:		Useful
-Version:	0.0.2
+Version:	0.0.3
 Cabal-Version:  >= 1.2
 License:	BSD3
 Author:		Daniel Holden
Useful/List.hs view
@@ -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"