aboutsummaryrefslogtreecommitdiffstats
path: root/cache/repo_cache_bug.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2022-03-10 16:37:45 +0100
committerGitHub <noreply@github.com>2022-03-10 16:37:45 +0100
commitbf9c7e00d022d0a0210dd5e2b8c3e7d38de64099 (patch)
tree956495036e383caab11006239e31e591436a33cd /cache/repo_cache_bug.go
parentdf55cc49a85eaf3a2d3c2ceb1fbcccac19fa6eb8 (diff)
parentb11679bc80b115c61a5cdee8ff8b5f8f1f69533d (diff)
downloadgit-bug-bf9c7e00d022d0a0210dd5e2b8c3e7d38de64099.tar.gz
Merge pull request #762 from MichaelMure/fix-comment
Fix a bunch of comments and documentations
Diffstat (limited to 'cache/repo_cache_bug.go')
-rw-r--r--cache/repo_cache_bug.go2
1 files changed, 1 insertions, 1 deletions
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) {