diff options
author | Alexander Foremny <aforemny@posteo.de> | 2023-10-17 09:30:31 +0200 |
---|---|---|
committer | Alexander Foremny <aforemny@posteo.de> | 2023-10-17 09:30:31 +0200 |
commit | bb88dbe078a0f16c0626a2825fd9f4d6bc775875 (patch) | |
tree | 71fbc7323fe188829b9b327af022bd85cc154d4e /app/History.hs | |
parent | 0d7cb474e6eb9a8bb5b6c9b1adf09b3b29760ff1 (diff) |
applySort -> applySorts
Diffstat (limited to 'app/History.hs')
-rw-r--r-- | app/History.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/History.hs b/app/History.hs index d2e6a46..fee1f2e 100644 --- a/app/History.hs +++ b/app/History.hs @@ -13,7 +13,7 @@ import GHC.Generics (Generic) import Git qualified import Issue (Issue (..), fromMatch, id) import Issue.Filter (Filter, applyFilters) -import Issue.Sort (Sort, applySort) +import Issue.Sort (Sort, applySorts) import Issue.Tag qualified as I import Parallel (parMapM) import Process (proc, sh) @@ -55,7 +55,7 @@ listIssues sort filters paths = do let eventses = getEvents hashFirst issuesInitial (commitInfos ++ [commitInfoWorkingTree]) let issues = mapMaybe issueFromIssueEvents eventses issuesFiltered = applyFilters filters issues - issuesSorted = applySort sort issuesFiltered + issuesSorted = applySorts sort issuesFiltered issuesWithinPaths = case paths of [] -> |