diff options
author | Brent Yorgey <byorgey@gmail.com> | 2008-03-24 15:35:03 +0100 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2008-03-24 15:35:03 +0100 |
commit | 13e829c592f9399947e243a0cdcc1f45d313cfff (patch) | |
tree | 151d99d76fc4926b6a75bfcb97f25699b21d7364 /XMonad | |
parent | 14b0a179114992220a226c17c35d9bf8fcba8d77 (diff) | |
download | XMonadContrib-13e829c592f9399947e243a0cdcc1f45d313cfff.tar.gz XMonadContrib-13e829c592f9399947e243a0cdcc1f45d313cfff.tar.xz XMonadContrib-13e829c592f9399947e243a0cdcc1f45d313cfff.zip |
Doc/Extending: remove references to "XMonad.Layouts" -- it's now called "XMonad.Layout", and in any case, importing it explicitly is not needed anyway.
darcs-hash:20080324143503-bd4d7-87e59055537504977c65663d7a2ff1a3be5af599.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Doc/Extending.hs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/XMonad/Doc/Extending.hs b/XMonad/Doc/Extending.hs index 13a4064..d0537fc 100644 --- a/XMonad/Doc/Extending.hs +++ b/XMonad/Doc/Extending.hs @@ -655,7 +655,6 @@ Suppose we want a list with the 'XMonad.Layout.Full', @~\/.xmonad\/xmonad.hs@, all the needed modules: > import XMonad -> import XMonad.Layouts > > import XMonad.Layout.Tabbed > import XMonad.Layout.Accordion @@ -684,7 +683,7 @@ If we want only the tabbed layout without borders, then we may write: Our @~\/.xmonad\/xmonad.hs@ will now look like this: -> import XMonad.Layouts +> import XMonad > > import XMonad.Layout.Tabbed > import XMonad.Layout.Accordion |