improve comment
authorJoey Hess <joeyh@joeyh.name>
Thu, 17 Dec 2020 17:12:52 +0000 (13:12 -0400)
committerJoey Hess <joeyh@joeyh.name>
Thu, 17 Dec 2020 17:12:52 +0000 (13:12 -0400)
Types/Remote.hs

index 2811f732ac9eaa38c1eb41f46054de1fa896c6ae..7b5f1ac0e50f623c153915d4cfa58d4c55288fd5 100644 (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
        }