minor explanatory comment

This commit is contained in:
daniel 2008-10-03 01:59:19 +00:00
parent a667fa5720
commit 95c8fa2d1d

View File

@ -34,7 +34,8 @@ import XMonad.StackSet
-- > main = xmonad defaultConfig { layoutHook = myLayouts } -- > main = xmonad defaultConfig { layoutHook = myLayouts }
-- --
-- You can also specify an aspect ratio for Grid to strive for with the -- You can also specify an aspect ratio for Grid to strive for with the
-- GridRatio constructor: -- GridRatio constructor. For example, if you want Grid to try to make a grid
-- four windows wide and three windows tall, you could use
-- --
-- > myLayouts = GridRatio (4/3) ||| etc. -- > myLayouts = GridRatio (4/3) ||| etc.
-- --