Fix ` characters in elem's haddock docs
authorIan Lynagh <igloo@earth.li>
Sat, 10 Nov 2007 17:30:52 +0000 (17:30 +0000)
committerIan Lynagh <igloo@earth.li>
Sat, 10 Nov 2007 17:30:52 +0000 (17:30 +0000)
GHC/List.lhs

index ce13f46..44aacf8 100644 (file)
@@ -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'.