diff options
author | Joey Hess <joey@kitenet.net> | 2010-11-06 17:07:11 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-11-06 17:07:11 -0400 |
commit | a3519c365feec45b5ab1236c7610863678b868a0 (patch) | |
tree | 5dcdee252d8301376c4bfaab127d0e2eba9eba19 /Annex.hs | |
parent | 016b6a59e7187ead0ed630699c85d0fec729a30d (diff) |
hlinted a few files
Diffstat (limited to 'Annex.hs')
-rw-r--r-- | Annex.hs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -50,9 +50,9 @@ new gitrepo allbackends = do {- performs an action in the Annex monad -} run :: AnnexState -> StateT AnnexState IO a -> IO (a, AnnexState) -run state action = runStateT (action) state +run state action = runStateT action state eval :: AnnexState -> StateT AnnexState IO a -> IO a -eval state action = evalStateT (action) state +eval state action = evalStateT action state {- Returns the git repository being acted on -} gitRepo :: Annex Git.Repo |