summaryrefslogtreecommitdiff
path: root/libraries/base/Data/List.hs
diff options
context:
space:
mode:
authorJoachim Breitner <mail@joachim-breitner.de>2012-03-16 21:53:50 +0100
committerPaolo Capriotti <p.capriotti@gmail.com>2012-03-19 18:45:29 +0000
commitbd77f3712e276ed87ab6921b26efa4af41e6640f (patch)
tree6551ecf91c24387ec5f6541d0f1baea43b4efd97 /libraries/base/Data/List.hs
parente1f950f1956bb9c72a0a734ca30cf12cb903290b (diff)
downloadhaskell-bd77f3712e276ed87ab6921b26efa4af41e6640f.tar.gz
Fix typo in Data.List.(\\) documentation
Diffstat (limited to 'libraries/base/Data/List.hs')
-rw-r--r--libraries/base/Data/List.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/libraries/base/Data/List.hs b/libraries/base/Data/List.hs
index 55e3dd2859..9f5001f028 100644
--- a/libraries/base/Data/List.hs
+++ b/libraries/base/Data/List.hs
@@ -376,7 +376,7 @@ deleteBy :: (a -> a -> Bool) -> a -> [a] -> [a]
deleteBy _ _ [] = []
deleteBy eq x (y:ys) = if x `eq` y then ys else y : deleteBy eq x ys
--- | The '\\' function is list difference ((non-associative).
+-- | The '\\' function is list difference (non-associative).
-- In the result of @xs@ '\\' @ys@, the first occurrence of each element of
-- @ys@ in turn (if any) has been removed from @xs@. Thus
--