diff options
author | Alex Tarkovsky <alextarkovsky@gmail.com> | 2007-10-13 03:41:51 +0200 |
---|---|---|
committer | Alex Tarkovsky <alextarkovsky@gmail.com> | 2007-10-13 03:41:51 +0200 |
commit | 56a4ce68eebc4af261c3a05e915b47d73847472e (patch) | |
tree | 6abe27c760c3a3002ed851672ab1f511fb11e779 | |
parent | 64eadd489e1de1da63ddf2130636b8d6d1a2de86 (diff) | |
download | XMonadContrib-56a4ce68eebc4af261c3a05e915b47d73847472e.tar.gz XMonadContrib-56a4ce68eebc4af261c3a05e915b47d73847472e.tar.xz XMonadContrib-56a4ce68eebc4af261c3a05e915b47d73847472e.zip |
TwoPane: Fix syntax error in example
darcs-hash:20071013014151-bd4fb-d9eb57e327457014f7122451f24f512ba4926c0e.gz
-rw-r--r-- | TwoPane.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -34,10 +34,10 @@ import StackSet ( focus, up, down) -- -- and add, to the list of layouts: -- --- > ,(Layout $ TwoPane 0.03 0.5) +-- > , (Layout $ TwoPane 0.03 0.5) -- %import XMonadContrib.TwoPane --- %layout , ,(Layout $ TwoPane 0.03 0.5) +-- %layout , (Layout $ TwoPane 0.03 0.5) data TwoPane a = TwoPane Rational Rational |