Skip to content

Commit e8f476e

Browse files
committed
fix: solve mixpelled coulnt
1 parent 3523d62 commit e8f476e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

backend/controllers/cache.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ func (d DiggerController) UpdateRepoCache(c *gin.Context) {
3535
link, err := models.DB.GetGithubAppInstallationLink(installationId)
3636
if err != nil {
3737
slog.Error("Could not get installation link", "error", err, "repoFullName", repoFullName, "installationId", installationId)
38-
c.String(http.StatusInternalServerError, fmt.Sprintf("coulnt not find installation link %v %v", repoFullName, installationId))
38+
c.String(http.StatusInternalServerError, fmt.Sprintf("could not find installation link %v %v", repoFullName, installationId))
3939
return
4040
}
4141
orgId := link.OrganisationId
@@ -48,7 +48,7 @@ func (d DiggerController) UpdateRepoCache(c *gin.Context) {
4848
repo, err := models.DB.GetRepo(orgId, repoDiggerName)
4949
if err != nil {
5050
slog.Error("Could not get repo", "error", err, "repoFullName", repoFullName, "orgId", orgId)
51-
c.String(http.StatusInternalServerError, fmt.Sprintf("coulnt not get repository %v %v", repoFullName, orgId))
51+
c.String(http.StatusInternalServerError, fmt.Sprintf("could not get repository %v %v", repoFullName, orgId))
5252
return
5353
}
5454

0 commit comments

Comments
 (0)