aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/WindowArranger.hs
diff options
context:
space:
mode:
authorAdam Vogt <vogt.adam@gmail.com>2009-06-18 02:37:29 +0200
committerAdam Vogt <vogt.adam@gmail.com>2009-06-18 02:37:29 +0200
commit477ac70445bcebc96d76a73dd1bee50e990f9391 (patch)
tree13dfb89028a9bfcf45e460fc19a1d3119f06a5ac /XMonad/Layout/WindowArranger.hs
parent8edeefe5acf8468e938a8f6bb882511d00c7ed78 (diff)
downloadXMonadContrib-477ac70445bcebc96d76a73dd1bee50e990f9391.tar.gz
XMonadContrib-477ac70445bcebc96d76a73dd1bee50e990f9391.tar.xz
XMonadContrib-477ac70445bcebc96d76a73dd1bee50e990f9391.zip
Correct many typos in the documentation, consistent US spellingg
Ignore-this: cf6dcf340fa6cc010f7879f188d376f5 darcs-hash:20090618003729-1499c-c927c08cda268b94b350f6419a64df8ca1e863d4.gz
Diffstat (limited to 'XMonad/Layout/WindowArranger.hs')
-rw-r--r--XMonad/Layout/WindowArranger.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Layout/WindowArranger.hs b/XMonad/Layout/WindowArranger.hs
index 7af39f0..2548096 100644
--- a/XMonad/Layout/WindowArranger.hs
+++ b/XMonad/Layout/WindowArranger.hs
@@ -203,7 +203,7 @@ memberFromList :: (b -> c) -> (c -> a -> Bool) -> a -> [b] -> [b]
memberFromList f g l = foldr (h l) []
where h x y ys = if g (f y) x then [y] else ys
--- | Get the list of elements to be deleted and the list ef elements to
+-- | Get the list of elements to be deleted and the list of elements to
-- be added to the first list in order to get the second list.
diff :: Eq a => ([a],[a]) -> ([a],[a])
diff (x,y) = (x \\ y, y \\ x)