Add a type signature
authorIan Lynagh <igloo@earth.li>
Mon, 2 Jul 2007 11:49:24 +0000 (11:49 +0000)
committerIan Lynagh <igloo@earth.li>
Mon, 2 Jul 2007 11:49:24 +0000 (11:49 +0000)
compiler/utils/Util.lhs

index 8d79001..0a77e4d 100644 (file)
@@ -733,6 +733,7 @@ consIORef var x = do
 Module names:
 
 \begin{code}
+looksLikeModuleName :: String -> Bool
 looksLikeModuleName [] = False
 looksLikeModuleName (c:cs) = isUpper c && go cs
   where go [] = True