X.*: Fix typos (#871)

* X.*: fix typos

* X.*: fix typos

* X.*: fix typos

* X.Util: fix typo

---------

Co-authored-by: Daniel Cousens <dcousens@users.noreply.github.com>
This commit is contained in:
Daniel Cousens 2024-02-12 17:55:20 +11:00 committed by GitHub
parent 1d8305d515
commit a84cec9b2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 10 additions and 10 deletions

View File

@ -35,7 +35,7 @@ import Control.Arrow (first)
-- in one row, in slave area underlying layout is run. Size of slave area -- in one row, in slave area underlying layout is run. Size of slave area
-- automatically increases when number of slave windows is increasing. -- automatically increases when number of slave windows is increasing.
-- --
-- You can use this module by adding folowing in your @xmonad.hs@: -- You can use this module by adding following in your @xmonad.hs@:
-- --
-- > import XMonad.Layout.AutoMaster -- > import XMonad.Layout.AutoMaster
-- --

View File

@ -38,7 +38,7 @@ import Control.Arrow (first)
-- All other windows in background are managed by base layout. -- All other windows in background are managed by base layout.
-- topRightMaster is like centerMaster, but places master window in top right corner instead of center. -- topRightMaster is like centerMaster, but places master window in top right corner instead of center.
-- --
-- Yo can use this module by adding folowing in your @xmonad.hs@: -- You can use this module by adding following in your @xmonad.hs@:
-- --
-- > import XMonad.Layout.CenteredMaster -- > import XMonad.Layout.CenteredMaster
-- --

View File

@ -11,7 +11,7 @@
-- Portability : unportable -- Portability : unportable
-- --
-- Provides Column layout that places all windows in one column. Windows -- Provides Column layout that places all windows in one column. Windows
-- heights are calculated from equation: H1/H2 = H2/H3 = ... = q, where q is -- heights are calculated from the equation: H1/H2 = H2/H3 = ... = q, where q is
-- given. With Shrink/Expand messages you can change the q value. -- given. With Shrink/Expand messages you can change the q value.
-- --
----------------------------------------------------------------------------- -----------------------------------------------------------------------------
@ -25,12 +25,12 @@ import XMonad
import qualified XMonad.StackSet as W import qualified XMonad.StackSet as W
-- $usage -- $usage
-- This module defines layot named Column. It places all windows in one -- This module defines layout named Column. It places all windows in one
-- column. Windows heights are calculated from equation: H1/H2 = H2/H3 = ... = -- column. Windows heights are calculated from the equation: H1/H2 = H2/H3 = ... =
-- q, where `q' is given (thus, windows heights are members of geometric -- q, where `q' is given (thus, windows heights are members of geometric
-- progression). With Shrink/Expand messages one can change the `q' value. -- progression). With Shrink/Expand messages one can change the `q' value.
-- --
-- You can use this module by adding folowing in your @xmonad.hs@: -- You can use this module by adding following in your @xmonad.hs@:
-- --
-- > import XMonad.Layout.Column -- > import XMonad.Layout.Column
-- --

View File

@ -36,7 +36,7 @@ import qualified XMonad.StackSet as W
-- IfMax layout will run one layout if number of windows on workspace is as -- IfMax layout will run one layout if number of windows on workspace is as
-- maximum N, and else will run another layout. -- maximum N, and else will run another layout.
-- --
-- You can use this module by adding folowing in your @xmonad.hs@: -- You can use this module by adding following in your @xmonad.hs@:
-- --
-- > import XMonad.Layout.IfMax -- > import XMonad.Layout.IfMax
-- --

View File

@ -46,8 +46,8 @@ import XMonad.Prompt ( XPPosition (..) )
-- 'tabBar' will give you the possibility of setting a custom shrinker -- 'tabBar' will give you the possibility of setting a custom shrinker
-- and a custom theme. -- and a custom theme.
-- --
-- The deafult theme can be dynamically change with the xmonad theme -- The default theme can be dynamically changed with the xmonad theme
-- selector. See "XMonad.Prompt.Theme". For more themse, look at -- selector. See "XMonad.Prompt.Theme". For more themes, look at
-- "XMonad.Util.Themes" -- "XMonad.Util.Themes"
-- | Add, on the top of the screen, a simple bar of tabs to a given -- | Add, on the top of the screen, a simple bar of tabs to a given

View File

@ -67,7 +67,7 @@ data PointRectangle a = PointRectangle
-- @[N,N+1]@, as though each real-valued coordinate had been rounded (either -- @[N,N+1]@, as though each real-valued coordinate had been rounded (either
-- down or up) to the nearest integers. So each pixel, from zero, is listed as: -- down or up) to the nearest integers. So each pixel, from zero, is listed as:
-- @[0,0]@, @[1,1]@, @[2,2]@, and so on. Rather than a coordinate system, this -- @[0,0]@, @[1,1]@, @[2,2]@, and so on. Rather than a coordinate system, this
-- considers pixels as row/colum indices. While easiest to reason with, -- considers pixels as row/column indices. While easiest to reason with,
-- indices are unable to represent zero-dimension rectangles. -- indices are unable to represent zero-dimension rectangles.
-- --
-- Consider pixels as indices. Do not use this on empty rectangles. -- Consider pixels as indices. Do not use this on empty rectangles.