From 1df0b552f17f15942a350def6736d5535e545d4c Mon Sep 17 00:00:00 2001 From: Josh Rahm Date: Thu, 1 Jan 2026 21:56:35 -0700 Subject: [refactor] Run ormolu on all the source. --- plug/src/Montis/StackSet.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'plug/src/Montis/StackSet.hs') diff --git a/plug/src/Montis/StackSet.hs b/plug/src/Montis/StackSet.hs index 4101a2f..a147eb8 100644 --- a/plug/src/Montis/StackSet.hs +++ b/plug/src/Montis/StackSet.hs @@ -2,10 +2,10 @@ module Montis.StackSet where -import Data.Monoid (First(..)) import Control.Monad.Identity import Control.Monad.Writer (MonadWriter (tell), execWriter) import Data.Maybe (isJust, mapMaybe) +import Data.Monoid (First (..)) -- | The root datastructure for holding the state of the windows. data StackSet s sd t l a = StackSet @@ -207,4 +207,4 @@ filter ffn = Montis.StackSet.catMaybes . fmap (\a -> if ffn a then Just a else Nothing) delete :: (Eq a) => a -> StackSet s sd t l a -> StackSet s sd t l a -delete win = Montis.StackSet.filter (/=win) +delete win = Montis.StackSet.filter (/= win) -- cgit