X.H.StatusBar: Fix misleading doc comment about encodeString

This isn't true since 63e31ccd8d28, `xmonadPropLog'` does the encoding
now and accepts a normal Haskell String now.

Fixes: 63e31ccd8d28 ("X.H.DynamicLog: Move UTF8 encoding from dynamicLogString to xmonadPropLog'")
This commit is contained in:
Tomas Janousek 2021-06-06 13:55:54 +01:00
parent e9334b5268
commit b96899afb6

View File

@ -488,8 +488,7 @@ xmonadPropLog :: String -> X ()
xmonadPropLog = xmonadPropLog' xmonadDefProp
-- | Write a string to a property on the root window. This property is of type
-- @UTF8_STRING@. The string must have been processed by 'encodeString'
-- ('dynamicLogString' does this).
-- @UTF8_STRING@.
xmonadPropLog' :: String -- ^ Property name
-> String -- ^ Message to be written to the property
-> X ()