Fix broken internal Haddock links

This commit is contained in:
Henri Jones 2019-05-07 22:32:05 +01:00
parent 4ad6ecf892
commit 4e4856c722
4 changed files with 4 additions and 4 deletions

View File

@ -467,7 +467,7 @@ Here is a list of the modules found in @XMonad.Hooks@:
* "XMonad.Hooks.DebugStack": * "XMonad.Hooks.DebugStack":
Dump the state of the StackSet. A logHook and handleEventHook are also provided. Dump the state of the StackSet. A logHook and handleEventHook are also provided.
* "Xmonad.Hooks.DynamicBars": * "XMonad.Hooks.DynamicBars":
Manage per-screen status bars. Manage per-screen status bars.
* "XMonad.Hooks.DynamicHooks": * "XMonad.Hooks.DynamicHooks":

View File

@ -214,7 +214,7 @@ infixr 5 |||
-- layouts, and use those. -- layouts, and use those.
-- --
-- For the ability to select a layout from a prompt, see -- For the ability to select a layout from a prompt, see
-- "Xmonad.Prompt.Layout". -- "XMonad.Prompt.Layout".
-- | A reimplementation of the combinator of the same name from the -- | A reimplementation of the combinator of the same name from the
-- xmonad core, providing layout choice, and the ability to support -- xmonad core, providing layout choice, and the ability to support

View File

@ -63,7 +63,7 @@ import Data.List
-- > , ((modm .|. shiftMask, xK_g), windowPrompt myXPConfig Goto allWindows) -- > , ((modm .|. shiftMask, xK_g), windowPrompt myXPConfig Goto allWindows)
-- --
-- For detailed instructions on editing the key bindings, see -- For detailed instructions on editing the key bindings, see
-- "Xmonad.Doc.Extending#Editing_key_bindings". -- "XMonad.Doc.Extending#Editing_key_bindings".
-- | Returns True if the first argument is a subsequence of the second argument, -- | Returns True if the first argument is a subsequence of the second argument,
-- that is, it can be obtained from the second sequence by deleting elements. -- that is, it can be obtained from the second sequence by deleting elements.

View File

@ -37,7 +37,7 @@ data Placement = OffsetLeft Int Int -- ^ An exact amount of pixels from the up
-- In the module we suppose that those matrices are represented as [[Bool]], -- In the module we suppose that those matrices are represented as [[Bool]],
-- so the lengths of the inner lists must be the same. -- so the lengths of the inner lists must be the same.
-- --
-- See "Xmonad.Layout.Decoration" for usage examples -- See "XMonad.Layout.Decoration" for usage examples
-- | Gets the ('width', 'height') of an image -- | Gets the ('width', 'height') of an image
imageDims :: [[Bool]] -> (Int, Int) imageDims :: [[Bool]] -> (Int, Int)