aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout
diff options
context:
space:
mode:
authorAndrea Rossato <andrea.rossato@unibz.it>2007-11-20 11:32:50 +0100
committerAndrea Rossato <andrea.rossato@unibz.it>2007-11-20 11:32:50 +0100
commit4eede35f82ca4f4c1fb0e5f07863dfe3786f15b9 (patch)
tree11d3e543a2d5f73a374d48dcb8fabcc12919a154 /XMonad/Layout
parent8e6bd88b05105554f1666158e196d103c13092f3 (diff)
downloadXMonadContrib-4eede35f82ca4f4c1fb0e5f07863dfe3786f15b9.tar.gz
XMonadContrib-4eede35f82ca4f4c1fb0e5f07863dfe3786f15b9.tar.xz
XMonadContrib-4eede35f82ca4f4c1fb0e5f07863dfe3786f15b9.zip
PerWorkspace.hs: minor haddock fixes
Also, we don't need to add those docstring annotation (%...), since that system is not used anymore. darcs-hash:20071120103250-32816-b41b1b6a680c4af75b382721c2597e401c7b1fc3.gz
Diffstat (limited to 'XMonad/Layout')
-rw-r--r--XMonad/Layout/PerWorkspace.hs7
1 files changed, 1 insertions, 6 deletions
diff --git a/XMonad/Layout/PerWorkspace.hs b/XMonad/Layout/PerWorkspace.hs
index 60af6a3..c26aecd 100644
--- a/XMonad/Layout/PerWorkspace.hs
+++ b/XMonad/Layout/PerWorkspace.hs
@@ -45,11 +45,6 @@ import Data.Maybe (fromMaybe)
-- layout D instead of C. You could do that as follows:
--
-- > layoutHook = A ||| B ||| onWorkspace "foo" D C
---
-
--- %import XMonad.Layout.PerWorkspace
--- %layout onWorkspace "foo" l1 l2 $ -- l1 used on workspace foo,
--- %layout -- l2 used on all others.
-- | Specify one layout to use on a particular workspace, and another
-- to use on all others. The second layout can be another call to
@@ -63,7 +58,7 @@ onWorkspace wsId l1 l2 = PerWorkspace wsId Nothing l1 l2
-- | Structure for representing a workspace-specific layout along with
-- a layout for all other workspaces. We store the tag of the workspace
--- to be matched, and the two layouts. Since layouts are stored/tracked
+-- to be matched, and the two layouts. Since layouts are stored\/tracked
-- per workspace, once we figure out which workspace we are on, we can
-- cache that information using a (Maybe Bool). This is necessary
-- to be able to correctly implement the 'description' method of