aboutsummaryrefslogtreecommitdiff
path: root/internal/db/release.go
diff options
context:
space:
mode:
authorAtin <61903527+atin@users.noreply.github.com>2021-05-19 10:42:09 +0530
committerGitHub <noreply@github.com>2021-05-19 13:12:09 +0800
commitd6987ee05be8b5da279e530cfd65512cb903c72b (patch)
tree92da4f00413abb945477a2c4e9df509a9c5b161d /internal/db/release.go
parent509a392272a2ba2bde9d64bf5a55a58d0eadccc4 (diff)
chore: fix typos in code comments (#6556)
Diffstat (limited to 'internal/db/release.go')
-rw-r--r--internal/db/release.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/db/release.go b/internal/db/release.go
index 7ec558b8..e38dc8b1 100644
--- a/internal/db/release.go
+++ b/internal/db/release.go
@@ -352,7 +352,7 @@ func DeleteReleaseOfRepoByID(repoID, id int64) error {
return fmt.Errorf("GetReleaseByID: %v", err)
}
- // Mark sure the delete operation againsts same repository.
+ // Mark sure the delete operation against same repository.
if repoID != rel.RepoID {
return nil
}