From ede0d6eccfea876b9ff1c79bf5e09eb5c43841db Mon Sep 17 00:00:00 2001 From: hasufell Date: Thu, 8 Jan 2015 01:38:46 +0100 Subject: [PATCH] PRELUDE: fix spelling --- MyPrelude.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MyPrelude.hs b/MyPrelude.hs index 4963dd8..9845bac 100644 --- a/MyPrelude.hs +++ b/MyPrelude.hs @@ -32,7 +32,7 @@ removeItem :: (Eq a) => a -> [a] -> [a] removeItem x = foldr (\x' y -> if x' == x then y else x':y) [] --- |Sort a liste of tuples lexicographically. +-- |Sort a list of tuples lexicographically. sortLex :: (Ord a) => [(a, a)] -> [(a, a)] sortLex = sortBy (\(x1, y1) (x2, y2) -> case compare x1 x2 of