diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2011-03-28 02:19:30 +0200 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2011-03-28 02:19:30 +0200 |
commit | 7fe5a96fdb02cb3b6ae81832cbad929e1c06f934 (patch) | |
tree | 0c92aa67874f2eee8b00dd067ba59313ee04a0ef | |
parent | e7715c7f06f29c813e2f654a3f0761521bc44111 (diff) | |
download | xmonad-7fe5a96fdb02cb3b6ae81832cbad929e1c06f934.tar.gz xmonad-7fe5a96fdb02cb3b6ae81832cbad929e1c06f934.tar.xz xmonad-7fe5a96fdb02cb3b6ae81832cbad929e1c06f934.zip |
Correct misleading documentation on Stack (thanks sdrodge)
Ignore-this: 518574016a9c15a741acdb6d2fa2e870
`Possibly empty' applies only to `Maybe (Stack a)', not `Stack a' described
there, so this is easier to understand.
darcs-hash:20110328001930-1499c-576faa6870919b21b02f5e6f16e413a2c197a3d5.gz
-rw-r--r-- | XMonad/StackSet.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/XMonad/StackSet.hs b/XMonad/StackSet.hs index 72c3edd..a7e9f6b 100644 --- a/XMonad/StackSet.hs +++ b/XMonad/StackSet.hs @@ -155,7 +155,7 @@ data RationalRect = RationalRect Rational Rational Rational Rational deriving (Show, Read, Eq) -- | --- A stack is a cursor onto a (possibly empty) window list. +-- A stack is a cursor onto a window list. -- The data structure tracks focus by construction, and -- the master window is by convention the top-most item. -- Focus operations will not reorder the list that results from |