From b11679bc80b115c61a5cdee8ff8b5f8f1f69533d Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Thu, 10 Mar 2022 16:27:22 +0100 Subject: Fix a bunch of comments and documentations --- entity/refs.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'entity/refs.go') diff --git a/entity/refs.go b/entity/refs.go index 070d4dba..6ba505b9 100644 --- a/entity/refs.go +++ b/entity/refs.go @@ -13,7 +13,7 @@ func RefsToIds(refs []string) []Id { return ids } -// RefsToIds parse a git reference and return the corresponding Entity's Id. +// RefToId parse a git reference and return the corresponding Entity's Id. func RefToId(ref string) Id { split := strings.Split(ref, "/") return Id(split[len(split)-1]) -- cgit