aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGjergji Ramku <Gjergj@users.noreply.github.com>2020-08-20 16:53:06 +0200
committerGitHub <noreply@github.com>2020-08-20 09:53:06 -0500
commit0c9eb468e9a55f933286a45f366f41a7a4e79637 (patch)
tree590efa801dddbbaa22638a7c649178ca5714921a
parentd15bb17b78f8aee3285b5fadf924ac2dc569f790 (diff)
downloadgitea-0c9eb468e9a55f933286a45f366f41a7a4e79637.tar.gz
gitea-0c9eb468e9a55f933286a45f366f41a7a4e79637.zip
Fix typos (#12542)
Signed-off-by: Gjergji Ramku <gjergjiramku@gmail.com>
-rw-r--r--routers/private/hook.go4
-rw-r--r--routers/private/serv.go2
-rw-r--r--routers/repo/compare.go2
-rw-r--r--services/gitdiff/gitdiff.go6
4 files changed, 7 insertions, 7 deletions
diff --git a/routers/private/hook.go b/routers/private/hook.go
index 215793c970..6cdc5393f4 100644
--- a/routers/private/hook.go
+++ b/routers/private/hook.go
@@ -557,7 +557,7 @@ func SetDefaultBranch(ctx *macaron.Context) {
if !git.IsErrUnsupportedVersion(err) {
gitRepo.Close()
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
- "Err": fmt.Sprintf("Unable to set default branch onrepository: %s/%s Error: %v", ownerName, repoName, err),
+ "Err": fmt.Sprintf("Unable to set default branch on repository: %s/%s Error: %v", ownerName, repoName, err),
})
return
}
@@ -566,7 +566,7 @@ func SetDefaultBranch(ctx *macaron.Context) {
if err := repo.UpdateDefaultBranch(); err != nil {
ctx.JSON(http.StatusInternalServerError, map[string]interface{}{
- "Err": fmt.Sprintf("Unable to set default branch onrepository: %s/%s Error: %v", ownerName, repoName, err),
+ "Err": fmt.Sprintf("Unable to set default branch on repository: %s/%s Error: %v", ownerName, repoName, err),
})
return
}
diff --git a/routers/private/serv.go b/routers/private/serv.go
index d5b5fcc8f7..2e79fd79ac 100644
--- a/routers/private/serv.go
+++ b/routers/private/serv.go
@@ -80,7 +80,7 @@ func ServCommand(ctx *macaron.Context) {
KeyID: keyID,
}
- // Now because we're not translating things properly let's just default some Engish strings here
+ // Now because we're not translating things properly let's just default some English strings here
modeString := "read"
if mode > models.AccessModeRead {
modeString = "write to"
diff --git a/routers/repo/compare.go b/routers/repo/compare.go
index fb78ebdeac..f8a18f0696 100644
--- a/routers/repo/compare.go
+++ b/routers/repo/compare.go
@@ -598,7 +598,7 @@ func ExcerptBlob(ctx *context.Context) {
direction := ctx.Query("direction")
filePath := ctx.Query("path")
gitRepo := ctx.Repo.GitRepo
- chunkSize := gitdiff.BlobExceprtChunkSize
+ chunkSize := gitdiff.BlobExcerptChunkSize
commit, err := gitRepo.GetCommit(commitID)
if err != nil {
ctx.Error(500, "GetCommit")
diff --git a/services/gitdiff/gitdiff.go b/services/gitdiff/gitdiff.go
index d50ae6ae27..fd07a2ad96 100644
--- a/services/gitdiff/gitdiff.go
+++ b/services/gitdiff/gitdiff.go
@@ -89,8 +89,8 @@ type DiffLineSectionInfo struct {
RightHunkSize int
}
-// BlobExceprtChunkSize represent max lines of excerpt
-const BlobExceprtChunkSize = 20
+// BlobExcerptChunkSize represent max lines of excerpt
+const BlobExcerptChunkSize = 20
// GetType returns the type of a DiffLine.
func (d *DiffLine) GetType() int {
@@ -139,7 +139,7 @@ func (d *DiffLine) GetExpandDirection() DiffLineExpandDirection {
}
if d.SectionInfo.LastLeftIdx <= 0 && d.SectionInfo.LastRightIdx <= 0 {
return DiffLineExpandUp
- } else if d.SectionInfo.RightIdx-d.SectionInfo.LastRightIdx > BlobExceprtChunkSize && d.SectionInfo.RightHunkSize > 0 {
+ } else if d.SectionInfo.RightIdx-d.SectionInfo.LastRightIdx > BlobExcerptChunkSize && d.SectionInfo.RightHunkSize > 0 {
return DiffLineExpandUpDown
} else if d.SectionInfo.LeftHunkSize <= 0 && d.SectionInfo.RightHunkSize <= 0 {
return DiffLineExpandDown