From: Ian Lynagh Date: Sat, 10 Nov 2007 17:30:52 +0000 (+0000) Subject: Fix ` characters in elem's haddock docs X-Git-Tag: 2008-05-28~115 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=72a61cec04a318e636df45614657a34adf876a49;p=ghc-base.git Fix ` characters in elem's haddock docs --- diff --git a/GHC/List.lhs b/GHC/List.lhs index ce13f46..44aacf8 100644 --- a/GHC/List.lhs +++ b/GHC/List.lhs @@ -524,7 +524,7 @@ all p (x:xs) = p x && all p xs #endif -- | 'elem' is the list membership predicate, usually written in infix form, --- e.g., @x `elem` xs@. +-- e.g., @x \`elem\` xs@. elem :: (Eq a) => a -> [a] -> Bool -- | 'notElem' is the negation of 'elem'.