diff options
| author | Josh Rahm <joshuarahm@gmail.com> | 2026-01-01 21:56:35 -0700 |
|---|---|---|
| committer | Josh Rahm <joshuarahm@gmail.com> | 2026-01-01 21:56:35 -0700 |
| commit | 1df0b552f17f15942a350def6736d5535e545d4c (patch) | |
| tree | c10cf5d5da8a241147c62339d4aeaff04eb0352a /plug/src/Montis/StackSet.hs | |
| parent | 4c5a5cc0eb92319719773e382fb43d5cb4098b13 (diff) | |
| download | montis-1df0b552f17f15942a350def6736d5535e545d4c.tar.gz montis-1df0b552f17f15942a350def6736d5535e545d4c.tar.bz2 montis-1df0b552f17f15942a350def6736d5535e545d4c.zip | |
[refactor] Run ormolu on all the source.
Diffstat (limited to 'plug/src/Montis/StackSet.hs')
| -rw-r--r-- | plug/src/Montis/StackSet.hs | 4 |
1 files changed, 2 insertions, 2 deletions
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) |