diff options
author | Joey Hess <joey@kitenet.net> | 2013-04-24 17:16:04 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-04-24 17:16:04 -0400 |
commit | d265917659b09e30d7ad0db345621b9b06288274 (patch) | |
tree | fae1418bcb47c0b1a9897b1c25935e4db6ce9a26 /Assistant/Types | |
parent | 9467d2bb7289c0769c1837c92595789c88301a84 (diff) |
remove last use of TSet
Diffstat (limited to 'Assistant/Types')
-rw-r--r-- | Assistant/Types/Commits.hs | 6 |
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 |