improve comment

This commit is contained in:
Joey Hess 2020-12-17 13:12:52 -04:00
parent e9af56fef1
commit e81e43b829
No known key found for this signature in database
GPG key ID: DB12DB0FF05F8F38

View file

@ -63,9 +63,9 @@ data RemoteTypeA a = RemoteType
, configParser :: RemoteConfig -> a RemoteConfigParser
-- initializes or enables a remote
, setup :: SetupStage -> Maybe UUID -> Maybe CredPair -> RemoteConfig -> RemoteGitConfig -> a (RemoteConfig, UUID)
-- check if a remote of this type is able to support export
-- check if a remote of this type is able to support export of trees
, exportSupported :: ParsedRemoteConfig -> RemoteGitConfig -> a Bool
-- check if a remote of this type is able to support import
-- check if a remote of this type is able to support import of trees
, importSupported :: ParsedRemoteConfig -> RemoteGitConfig -> a Bool
}