From 72a61cec04a318e636df45614657a34adf876a49 Mon Sep 17 00:00:00 2001 From: Ian Lynagh Date: Sat, 10 Nov 2007 17:30:52 +0000 Subject: [PATCH] Fix ` characters in elem's haddock docs --- GHC/List.lhs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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'. -- 1.7.10.4