From dec0feeb034151d0d7fa57cda04edafe11117ba1 Mon Sep 17 00:00:00 2001 From: Brent Yorgey Date: Tue, 27 Nov 2007 17:31:06 +0100 Subject: LayoutCombinators: a few minor haddock fixes darcs-hash:20071127163106-bd4d7-0b7f22264e564a42420623ee2b1d2e76a7c619a2.gz --- XMonad/Layout/LayoutCombinators.hs | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) (limited to 'XMonad/Layout/LayoutCombinators.hs') 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 -- cgit v1.2.3