Repository : ssh://darcs.haskell.org//srv/darcs/ghc On branch : master
http://hackage.haskell.org/trac/ghc/changeset/704f8024c75ab147c6f9558b1c76525f132e4f14 >--------------------------------------------------------------- commit 704f8024c75ab147c6f9558b1c76525f132e4f14 Author: Gabor Greif <ggr...@gmail.com> Date: Wed Nov 21 18:25:50 2012 +0100 fix some typos >--------------------------------------------------------------- compiler/main/GHC.hs | 4 ++-- compiler/typecheck/TcRnTypes.lhs | 4 ++-- compiler/utils/Outputable.lhs | 8 ++++---- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/compiler/main/GHC.hs b/compiler/main/GHC.hs index 051edcd..82b822b 100644 --- a/compiler/main/GHC.hs +++ b/compiler/main/GHC.hs @@ -1,6 +1,6 @@ -- ----------------------------------------------------------------------------- -- --- (c) The University of Glasgow, 2005 +-- (c) The University of Glasgow, 2005-2012 -- -- The GHC API -- @@ -369,7 +369,7 @@ defaultErrorHandler fm (FlushOut flushOut) inner = inner -- | Install a default cleanup handler to remove temporary files deposited by --- a GHC run. This is seperate from 'defaultErrorHandler', because you might +-- a GHC run. This is separate from 'defaultErrorHandler', because you might -- want to override the error handling, but still get the ordinary cleanup -- behaviour. defaultCleanupHandler :: (ExceptionMonad m, MonadIO m) => diff --git a/compiler/typecheck/TcRnTypes.lhs b/compiler/typecheck/TcRnTypes.lhs index 99b9a07..c269882 100644 --- a/compiler/typecheck/TcRnTypes.lhs +++ b/compiler/typecheck/TcRnTypes.lhs @@ -1,5 +1,5 @@ -% (c) The University of Glasgow 2006 +% (c) The University of Glasgow 2006-2012 % (c) The GRASP Project, Glasgow University, 1992-2002 % @@ -784,7 +784,7 @@ emptyImportAvails = ImportAvails { imp_mods = emptyModuleEnv, -- | Union two ImportAvails -- -- This function is a key part of Import handling, basically --- for each import we create a seperate ImportAvails structure +-- for each import we create a separate ImportAvails structure -- and then union them all together with this function. plusImportAvails :: ImportAvails -> ImportAvails -> ImportAvails plusImportAvails diff --git a/compiler/utils/Outputable.lhs b/compiler/utils/Outputable.lhs index 7e5c180..ad0b9d7 100644 --- a/compiler/utils/Outputable.lhs +++ b/compiler/utils/Outputable.lhs @@ -1,5 +1,5 @@ % -% (c) The University of Glasgow 2006 +% (c) The University of Glasgow 2006-2012 % (c) The GRASP Project, Glasgow University, 1992-1998 % @@ -779,15 +779,15 @@ pprWithCommas :: (a -> SDoc) -- ^ The pretty printing function to use -- comma-separated and finally packed into a paragraph. pprWithCommas pp xs = fsep (punctuate comma (map pp xs)) --- | Returns the seperated concatenation of the pretty printed things. +-- | Returns the separated concatenation of the pretty printed things. interppSP :: Outputable a => [a] -> SDoc interppSP xs = sep (map ppr xs) --- | Returns the comma-seperated concatenation of the pretty printed things. +-- | Returns the comma-separated concatenation of the pretty printed things. interpp'SP :: Outputable a => [a] -> SDoc interpp'SP xs = sep (punctuate comma (map ppr xs)) --- | Returns the comma-seperated concatenation of the quoted pretty printed things. +-- | Returns the comma-separated concatenation of the quoted pretty printed things. -- -- > [x,y,z] ==> `x', `y', `z' pprQuotedList :: Outputable a => [a] -> SDoc _______________________________________________ Cvs-ghc mailing list Cvs-ghc@haskell.org http://www.haskell.org/mailman/listinfo/cvs-ghc