aboutsummaryrefslogtreecommitdiffstats
path: root/XMonad/Layout/LayoutCombinators.hs
diff options
context:
space:
mode:
authorBrent Yorgey <byorgey@gmail.com>2007-11-27 17:31:06 +0100
committerBrent Yorgey <byorgey@gmail.com>2007-11-27 17:31:06 +0100
commitdec0feeb034151d0d7fa57cda04edafe11117ba1 (patch)
tree19c23b3b7580bd1536ea274aeb403e4d0647a8bd /XMonad/Layout/LayoutCombinators.hs
parent125136bba2ae41f5d3d35aa1849a67d31f3e87a3 (diff)
downloadXMonadContrib-dec0feeb034151d0d7fa57cda04edafe11117ba1.tar.gz
XMonadContrib-dec0feeb034151d0d7fa57cda04edafe11117ba1.tar.xz
XMonadContrib-dec0feeb034151d0d7fa57cda04edafe11117ba1.zip
LayoutCombinators: a few minor haddock fixes
darcs-hash:20071127163106-bd4d7-0b7f22264e564a42420623ee2b1d2e76a7c619a2.gz
Diffstat (limited to 'XMonad/Layout/LayoutCombinators.hs')
-rw-r--r--XMonad/Layout/LayoutCombinators.hs24
1 files changed, 11 insertions, 13 deletions
diff --git a/XMonad/Layout/LayoutCombinators.hs b/XMonad/Layout/LayoutCombinators.hs
index 5804619..c2e262c 100644
--- a/XMonad/Layout/LayoutCombinators.hs
+++ b/XMonad/Layout/LayoutCombinators.hs
@@ -22,17 +22,17 @@ module XMonad.Layout.LayoutCombinators (
(*||*), (**||*),(***||*),(****||*),(***||**),(****||***),
(***||****),(*||****),(**||***),(*||***),(*||**),
- -- * Combinators using DragPane Horizontal
+ -- * Combinators using DragPane horizontal
-- $dph
(*//*), (**//*),(***//*),(****//*),(***//**),(****//***),
(***//****),(*//****),(**//***),(*//***),(*//**),
- -- * Combinators using Mirror Tall Vertical
- -- $mtv
+ -- * Combinators using Tall (vertical)
+ -- $tv
(*|*), (**|*),(***|*),(****|*),(***|**),(****|***),
(***|****),(*|****),(**|***),(*|***),(*|**),
- -- * Combinators using Mirror Tall Horizontal
+ -- * Combinators using Mirror Tall (horizontal)
-- $mth
(*/*), (**/*),(***/*),(****/*),(***/**),(****/***),
(***/****),(*/****),(**/***),(*/***),(*/**),
@@ -70,7 +70,7 @@ infixr 6 *||*, **||*, ***||*, ****||*, ***||**, ****||***, ***||****, *||****, *
*/* , **/* , ***/* , ****/* , ***/** , ****/*** , ***/**** , */**** , **/*** , */*** , */**
-- $dpv
--- These combinators combine 2 layouts using "XMonad.DragPane" in
+-- These combinators combine two layouts using "XMonad.DragPane" in
-- vertical mode.
(*||*),(**||*),(***||*),(****||*), (***||**),(****||***),
(***||****),(*||****),(**||***),(*||***),(*||**) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) =>
@@ -89,7 +89,7 @@ infixr 6 *||*, **||*, ***||*, ****||*, ***||**, ****||***, ***||****, *||****, *
(*||**) = combineTwo (dragPane Vertical 0.1 (1/3))
-- $dph
--- These combinators combine 2 layouts using "XMonad.DragPane" in
+-- These combinators combine two layouts using "XMonad.DragPane" in
-- horizontal mode.
(*//*),(**//*),(***//*),(****//*), (***//**),(****//***),
(***//****),(*//****),(**//***),(*//***),(*//**) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a) =>
@@ -107,9 +107,8 @@ infixr 6 *||*, **||*, ***||*, ****||*, ***||**, ****||***, ***||****, *||****, *
(*//***) = combineTwo (dragPane Horizontal 0.1 (1/4))
(*//**) = combineTwo (dragPane Horizontal 0.1 (1/3))
--- $mtv
--- These combinators combine two layouts vertivally using Mirror
--- Tall.
+-- $tv
+-- These combinators combine two layouts vertically using Tall.
(*|*),(**|*),(***|*),(****|*), (***|**),(****|***),
(***|****),(*|****),(**|***),(*|***),(*|**) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a)
=> l1 a -> l2 a -> CombineTwo (Tall ()) l1 l2 a
@@ -126,9 +125,9 @@ infixr 6 *||*, **||*, ***||*, ****||*, ***||**, ****||***, ***||****, *||****, *
(*|**) = combineTwo (Tall 1 0.1 (1/3))
--- $mtv
--- These combinators combine two layouts horizzontally using Mirror
--- Tall (a wide layout)
+-- $mth
+-- These combinators combine two layouts horizontally using Mirror
+-- Tall (a wide layout).
(*/*),(**/*),(***/*),(****/*), (***/**),(****/***),
(***/****),(*/****),(**/***),(*/***),(*/**) :: (Read a, Eq a, LayoutClass l1 a, LayoutClass l2 a)
=> l1 a -> l2 a -> CombineTwo (Mirror Tall ()) l1 l2 a
@@ -216,4 +215,3 @@ passOnM m (NewSelect False lt lf) = do mlf' <- handleMessage lf m
when' :: Monad m => (a -> Bool) -> m a -> m a -> m a
when' f a b = do a1 <- a; if f a1 then b else return a1
--- LocalWords: horizzontally