diff options
author | Brent Yorgey <byorgey@gmail.com> | 2007-10-22 20:34:11 +0200 |
---|---|---|
committer | Brent Yorgey <byorgey@gmail.com> | 2007-10-22 20:34:11 +0200 |
commit | 341e990ca2779b440b98ce74151b16467b31f1ab (patch) | |
tree | 326b2a020afd207c3a0dc46110299530dc338a33 | |
parent | 33404de82cce78e79d22972daa6faaceb2149c06 (diff) | |
download | metatile-341e990ca2779b440b98ce74151b16467b31f1ab.tar metatile-341e990ca2779b440b98ce74151b16467b31f1ab.zip |
StackSet.hs: (new): better comment; 'm' is not an integer, it is a list of screen descriptions.
darcs-hash:20071022183411-bd4d7-00a0550d101435adca2d6e38a78f49e353a8aa3e
-rw-r--r-- | StackSet.hs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/StackSet.hs b/StackSet.hs index f607764..654ff5d 100644 --- a/StackSet.hs +++ b/StackSet.hs @@ -208,9 +208,11 @@ abort x = error $ "xmonad: StackSet: " ++ x -- --------------------------------------------------------------------- -- $construction --- | /O(n)/. Create a new stackset, of empty stacks, with given tags, with --- 'm' physical screens. 'm' should be less than or equal to the number of --- workspace tags. The first workspace in the list will be current. +-- | /O(n)/. Create a new stackset, of empty stacks, with given tags, +-- with physical screens whose descriptions are given by 'm'. The +-- number of physical screens (@length 'm'@) should be less than or +-- equal to the number of workspace tags. The first workspace in the +-- list will be current. -- -- Xinerama: Virtual workspaces are assigned to physical screens, starting at 0. -- |