diff options
author | Michael Muré <batolettre@gmail.com> | 2022-03-10 16:37:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-10 16:37:45 +0100 |
commit | bf9c7e00d022d0a0210dd5e2b8c3e7d38de64099 (patch) | |
tree | 956495036e383caab11006239e31e591436a33cd /entity/id.go | |
parent | df55cc49a85eaf3a2d3c2ceb1fbcccac19fa6eb8 (diff) | |
parent | b11679bc80b115c61a5cdee8ff8b5f8f1f69533d (diff) | |
download | git-bug-bf9c7e00d022d0a0210dd5e2b8c3e7d38de64099.tar.gz |
Merge pull request #762 from MichaelMure/fix-comment
Fix a bunch of comments and documentations
Diffstat (limited to 'entity/id.go')
-rw-r--r-- | entity/id.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/entity/id.go b/entity/id.go index c8dbdb94..8f3dc25b 100644 --- a/entity/id.go +++ b/entity/id.go @@ -63,7 +63,7 @@ func (i Id) MarshalGQL(w io.Writer) { _, _ = w.Write([]byte(`"` + i.String() + `"`)) } -// IsValid tell if the Id is valid +// Validate tell if the Id is valid func (i Id) Validate() error { // Special case to detect outdated repo if len(i) == 40 { |