From b764b3450fd52ead0ea7cb1cc1b609e423f9b3b1 Mon Sep 17 00:00:00 2001 From: Josef Svenningsson Date: Thu, 20 Apr 2006 21:35:55 +0000 Subject: [PATCH] Comments only --- compiler/basicTypes/Module.lhs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/compiler/basicTypes/Module.lhs b/compiler/basicTypes/Module.lhs index 6952162..f9b00f1 100644 --- a/compiler/basicTypes/Module.lhs +++ b/compiler/basicTypes/Module.lhs @@ -5,23 +5,23 @@ Module ~~~~~~~~~~ Simply the name of a module, represented as a FastString. -These are Uniquable, hence we can build FiniteMaps with ModuleNames as +These are Uniquable, hence we can build FiniteMaps with Modules as the keys. \begin{code} module Module ( Module -- Abstract, instance of Eq, Ord, Outputable - , pprModule -- :: ModuleName -> SDoc + , pprModule -- :: Module -> SDoc , ModLocation(..) , addBootSuffix, addBootSuffix_maybe, addBootSuffixLocn - , moduleString -- :: ModuleName -> String - , moduleFS -- :: ModuleName -> FastString + , moduleString -- :: Module -> String + , moduleFS -- :: Module -> FastString - , mkModule -- :: String -> ModuleName - , mkModuleFS -- :: FastString -> ModuleName + , mkModule -- :: String -> Module + , mkModuleFS -- :: FastString -> Module , ModuleEnv , elemModuleEnv, extendModuleEnv, extendModuleEnvList, plusModuleEnv_C -- 1.7.10.4