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 --- cache/repo_cache_bug.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cache/repo_cache_bug.go') diff --git a/cache/repo_cache_bug.go b/cache/repo_cache_bug.go index c019da68..bce01926 100644 --- a/cache/repo_cache_bug.go +++ b/cache/repo_cache_bug.go @@ -457,7 +457,7 @@ func (c *RepoCache) NewBugWithFiles(title string, message string, files []reposi return c.NewBugRaw(author, time.Now().Unix(), title, message, files, nil) } -// NewBugWithFilesMeta create a new bug with attached files for the message, as +// NewBugRaw create a new bug with attached files for the message, as // well as metadata for the Create operation. // The new bug is written in the repository (commit) func (c *RepoCache) NewBugRaw(author *IdentityCache, unixTime int64, title string, message string, files []repository.Hash, metadata map[string]string) (*BugCache, *bug.CreateOperation, error) { -- cgit