summaryrefslogtreecommitdiff
path: root/Assistant/Types
diff options
context:
space:
mode:
Diffstat (limited to 'Assistant/Types')
-rw-r--r--Assistant/Types/Commits.hs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Assistant/Types/Commits.hs b/Assistant/Types/Commits.hs
index 12dab8da8..500faa901 100644
--- a/Assistant/Types/Commits.hs
+++ b/Assistant/Types/Commits.hs
@@ -7,13 +7,13 @@
module Assistant.Types.Commits where
-import Utility.TSet
+import Utility.TList
import Control.Concurrent.STM
-type CommitChan = TSet Commit
+type CommitChan = TList Commit
data Commit = Commit
newCommitChan :: IO CommitChan
-newCommitChan = atomically newTSet
+newCommitChan = atomically newTList