Repository : ssh://darcs.haskell.org//srv/darcs/packages/base On branch : master
http://hackage.haskell.org/trac/ghc/changeset/8ebe8ccec8a1fad49e5e608611b951c63eefb376 >--------------------------------------------------------------- commit 8ebe8ccec8a1fad49e5e608611b951c63eefb376 Author: Joachim Breitner <[email protected]> Date: Fri Mar 16 21:53:50 2012 +0100 Fix typo in Data.List.(\\) documentation >--------------------------------------------------------------- Data/List.hs | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Data/List.hs b/Data/List.hs index 55e3dd2..9f5001f 100644 --- a/Data/List.hs +++ b/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 -- _______________________________________________ Cvs-libraries mailing list [email protected] http://www.haskell.org/mailman/listinfo/cvs-libraries
