diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2011-08-14 21:53:14 +0200 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2011-08-14 21:53:14 +0200 |
commit | b6bd9dd5dfad0fae58d4f516a3bb14872014861e (patch) | |
tree | d4c8e44f891e0fcce72423fbe46c656d81148650 /XMonad | |
parent | 59077427630f09ff7adc6be48d46b6915121d55b (diff) | |
download | XMonadContrib-b6bd9dd5dfad0fae58d4f516a3bb14872014861e.tar.gz XMonadContrib-b6bd9dd5dfad0fae58d4f516a3bb14872014861e.tar.xz XMonadContrib-b6bd9dd5dfad0fae58d4f516a3bb14872014861e.zip |
Fix typo in NoBorders example code.
Ignore-this: 3ad6aaf287962bfce707b2324de91eec
darcs-hash:20110814195314-1499c-81d23becd5583587393f2551385aa3ad7451e7ed.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Layout/NoBorders.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/Layout/NoBorders.hs b/XMonad/Layout/NoBorders.hs index 80d6fc1..a174183 100644 --- a/XMonad/Layout/NoBorders.hs +++ b/XMonad/Layout/NoBorders.hs @@ -130,7 +130,7 @@ instance (Read p, Show p, SetsAmbiguous p) => LayoutModifier (ConfigurableBorder -- -- To get the same result as 'smartBorders': -- --- > layoutHook = lessBorders (Combine Never) (Tall 1 0.5 0.03 ||| ...) +-- > layoutHook = lessBorders Never (Tall 1 0.5 0.03 ||| ...) -- -- This indirect method is required to keep the 'Read' and 'Show' for -- ConfigurableBorder so that xmonad can serialize state. |