X.U.NamedScratchpad: Fix typo in exclusive docs

Fixes: f059829f03
This commit is contained in:
Tony Zorman 2023-01-25 07:48:15 +01:00
parent 339dbbf2fd
commit 49904ec4d3

View File

@ -446,9 +446,10 @@ toggleDynamicNSP s w = do
-- For example, having defined "Calc", "Mail", and "Term" scratchpads,
-- you can use 'addExclusives' to make some of them dislike each other:
--
-- > myExclusives = [ ["Calc", "Mail"]
-- > , ["Mail", "Term"]
-- > ]
-- > myExclusives = addExclusives
-- > [ ["Calc", "Mail"]
-- > , ["Mail", "Term"]
-- > ]
--
-- You now have to add @myExclusives@ to you startupHook:
--