aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad
diff options
context:
space:
mode:
Diffstat (limited to 'XMonad')
-rw-r--r--XMonad/Config.hs (renamed from XMonad/DefaultConfig.hs)4
-rw-r--r--XMonad/Core.hs (renamed from XMonad/EventLoop.hs)4
2 files changed, 4 insertions, 4 deletions
diff --git a/XMonad/DefaultConfig.hs b/XMonad/Config.hs
index a13d68a..5021328 100644
--- a/XMonad/DefaultConfig.hs
+++ b/XMonad/Config.hs
@@ -1,7 +1,7 @@
{-# OPTIONS -fno-warn-missing-signatures #-}
-----------------------------------------------------------------------------
-- |
--- Module : DefaultConfig.hs
+-- Module : XMonad.Config
-- Copyright : (c) Spencer Janssen 2007
-- License : BSD3-style (see LICENSE)
--
@@ -15,7 +15,7 @@
--
------------------------------------------------------------------------
-module XMonad.DefaultConfig (defaultConfig) where
+module XMonad.Config (defaultConfig) where
--
-- Useful imports
diff --git a/XMonad/EventLoop.hs b/XMonad/Core.hs
index eba8e9d..ff64457 100644
--- a/XMonad/EventLoop.hs
+++ b/XMonad/Core.hs
@@ -1,7 +1,7 @@
{-# LANGUAGE MultiParamTypeClasses #-}
----------------------------------------------------------------------------
-- |
--- Module : EventLoop.hs
+-- Module : Core.hs
-- Copyright : (c) Spencer Janssen 2007
-- License : BSD3-style (see LICENSE)
--
@@ -13,7 +13,7 @@
--
-----------------------------------------------------------------------------
-module XMonad.EventLoop (makeMain) where
+module XMonad.Core (makeMain) where
import Data.Bits
import qualified Data.Map as M