diff options
author | Adam Vogt <vogt.adam@gmail.com> | 2011-05-27 05:35:21 +0200 |
---|---|---|
committer | Adam Vogt <vogt.adam@gmail.com> | 2011-05-27 05:35:21 +0200 |
commit | d2184a792fedad3e80b76ee859dadbb32c43eff2 (patch) | |
tree | 17ed7c9bdb291dff1d169faf8730a38faee4d008 /XMonad | |
parent | 5df8e0f8dedcf0feb1a7d4d5aab5ce10818f9030 (diff) | |
download | XMonadContrib-d2184a792fedad3e80b76ee859dadbb32c43eff2.tar.gz XMonadContrib-d2184a792fedad3e80b76ee859dadbb32c43eff2.tar.xz XMonadContrib-d2184a792fedad3e80b76ee859dadbb32c43eff2.zip |
Documentation fix (issue 445)
Ignore-this: c73b88f9567af86bd560b911e33da301
Daniel's change which broke -Wall (adding an import for haddock only) was
somehow removed. Instead we can just modify the sample code to add the import.
darcs-hash:20110527033521-1499c-c8541e34d750bfa8aeec79389267110d05778477.gz
Diffstat (limited to 'XMonad')
-rw-r--r-- | XMonad/Actions/DynamicWorkspaces.hs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/XMonad/Actions/DynamicWorkspaces.hs b/XMonad/Actions/DynamicWorkspaces.hs index d91b654..4b8156b 100644 --- a/XMonad/Actions/DynamicWorkspaces.hs +++ b/XMonad/Actions/DynamicWorkspaces.hs @@ -39,6 +39,7 @@ import Control.Monad (when) -- You can use this module with the following in your @~\/.xmonad\/xmonad.hs@ file: -- -- > import XMonad.Actions.DynamicWorkspaces +-- > import XMonad.Actions.CopyWindow(copy) -- -- Then add keybindings like the following: -- @@ -57,7 +58,7 @@ import Control.Monad (when) -- -- For detailed instructions on editing your key bindings, see -- "XMonad.Doc.Extending#Editing_key_bindings". See also the documentation for --- 'copy', 'windows', 'shift', and 'defaultXPConfig'. +-- "XMonad.Actions.CopyWindow", 'windows', 'shift', and 'defaultXPConfig'. data Wor = Wor String |