aboutsummaryrefslogtreecommitdiffstats
path: root/commands/select
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2023-01-11 13:28:07 +0100
committerMichael Muré <batolettre@gmail.com>2023-01-11 13:28:07 +0100
commit637071a84b6dd25df42b8fa79f31bc73d338c55a (patch)
treec843bf0f26bc9b3d8483895ee0d6d0fc7f568470 /commands/select
parent70b0c5b81c106e14c7ee837832ea640bd7c687f5 (diff)
downloadgit-bug-637071a84b6dd25df42b8fa79f31bc73d338c55a.tar.gz
make go1.19 fmt happy
Diffstat (limited to 'commands/select')
-rw-r--r--commands/select/select.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/commands/select/select.go b/commands/select/select.go
index b821ba59..694d636a 100644
--- a/commands/select/select.go
+++ b/commands/select/select.go
@@ -39,10 +39,10 @@ type Resolver[CacheT cache.CacheEntity] interface {
// line. If it fails, it falls back to the select mechanism.
//
// Returns:
-// - the entity if any
-// - the new list of command line arguments with the entity prefix removed if it
-// has been used
-// - an error if the process failed
+// - the entity if any
+// - the new list of command line arguments with the entity prefix removed if it
+// has been used
+// - an error if the process failed
func Resolve[CacheT cache.CacheEntity](repo *cache.RepoCache,
typename string, namespace string, resolver Resolver[CacheT],
args []string) (CacheT, []string, error) {