]> gitweb.michael.orlitzky.com - dead/halcyon.git/blobdiff - src/StringUtils.hs
Replace necessary NoMonomorphism language pragma.
[dead/halcyon.git] / src / StringUtils.hs
index b7d291c229acdc96f777f8b60078fbd991d3c0cd..52b1def19cfc02acde93a24cbf25b5949d4297dd 100644 (file)
@@ -5,14 +5,16 @@ where
 import Test.HUnit
 
 
--- |Takes a list of strings, call them string1, string2, etc. and
--- numbers them like a list. So,
--- 1. string1
--- 2. string2
--- 3. etc.
+-- | Takes a list of strings, call them string1, string2, etc. and
+--   numbers them like a list. So,
+--
+--   1. string1
+--   2. string2
+--   3. etc.
+--
 listify :: [String] -> [String]
-listify items =
-    zipWith (++) list_numbers items
+listify =
+    zipWith (++) list_numbers
     where
       list_numbers = map show_with_dot [1::Integer ..]
       show_with_dot x = (show x) ++ ". "