summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKim "BKC" Carlbäcker <kim.carlbacker@gmail.com>2016-12-01 09:20:48 +0100
committerGitHub <noreply@github.com>2016-12-01 09:20:48 +0100
commit31950cb26248ee006466e015340ade3d690581d9 (patch)
treea62c4a7e662767748bf8d11da3379b3fed6a1296
parent2932042a6d6dcf8d4f74de0abce688190f2925b9 (diff)
parent646e02b521e2122f3a386d5a1c51d278b9ac0e77 (diff)
downloadgitea-31950cb26248ee006466e015340ade3d690581d9.tar.gz
gitea-31950cb26248ee006466e015340ade3d690581d9.zip
Merge pull request #322 from lunny/lunny/pull_typo
typo in model/pull.go
-rw-r--r--models/pull.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/models/pull.go b/models/pull.go
index f1b92bff58..5157b61fef 100644
--- a/models/pull.go
+++ b/models/pull.go
@@ -339,7 +339,7 @@ func (pr *PullRequest) Merge(doer *User, baseGitRepo *git.Repository) (err error
return nil
}
-// patchConflicts is a list of conflit description from Git.
+// patchConflicts is a list of conflict description from Git.
var patchConflicts = []string{
"patch does not apply",
"already exists in working directory",
@@ -347,7 +347,7 @@ var patchConflicts = []string{
"error:",
}
-// testPatch checks if patch can be merged to base repository without conflit.
+// testPatch checks if patch can be merged to base repository without conflict.
// FIXME: make a mechanism to clean up stable local copies.
func (pr *PullRequest) testPatch() (err error) {
if pr.BaseRepo == nil {
@@ -384,7 +384,7 @@ func (pr *PullRequest) testPatch() (err error) {
if err != nil {
for i := range patchConflicts {
if strings.Contains(stderr, patchConflicts[i]) {
- log.Trace("PullRequest[%d].testPatch (apply): has conflit", pr.ID)
+ log.Trace("PullRequest[%d].testPatch (apply): has conflict", pr.ID)
fmt.Println(stderr)
pr.Status = PullRequestStatusConflict
return nil