Fix -Woperator-whitespace-ext-conflict warnings

This commit is contained in:
Tomas Janousek
2021-10-31 17:36:36 +00:00
parent e252cc75b1
commit 850a3c245e
2 changed files with 2 additions and 2 deletions

View File

@@ -71,7 +71,7 @@ apply (Append s') s = s ++ s'
apply (Prepend s') s = s' ++ s
apply (AppendWords s') s = unwords $ words s ++ [s']
apply (PrependWords s') s = unwords $ s' : words s
apply (Chain rs) s = ($s) $ foldr (flip (.) . apply) id rs
apply (Chain rs) s = ($ s) $ foldr (flip (.) . apply) id rs
instance LayoutModifier Rename a where
modifyDescription r l = apply r (description l)