summaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
authorThomas Boerger <thomas@webhippie.de>2016-11-25 12:54:57 +0100
committerGitHub <noreply@github.com>2016-11-25 12:54:57 +0100
commite9c6053b860d5d4111768d258a2d5d5d665597b0 (patch)
tree43db1673b2df3848587f9f6e6a157e6f8f844fa3 /models/issue.go
parent177a4c73856aa9b8cbebd3989cfbe5c6fe3874b9 (diff)
parent2a449bd4b12545b904cfdd591fcf17afebf6a3c6 (diff)
downloadgitea-e9c6053b860d5d4111768d258a2d5d5d665597b0.tar.gz
gitea-e9c6053b860d5d4111768d258a2d5d5d665597b0.zip
Merge pull request #246 from Bwko/fix/typo
Fix typos
Diffstat (limited to 'models/issue.go')
-rw-r--r--models/issue.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue.go b/models/issue.go
index e5beaedadf..d3418e4449 100644
--- a/models/issue.go
+++ b/models/issue.go
@@ -664,7 +664,7 @@ func newIssue(e *xorm.Session, opts NewIssueOptions) (err error) {
}
if len(opts.LableIDs) > 0 {
- // During the session, SQLite3 dirver cannot handle retrieve objects after update something.
+ // During the session, SQLite3 driver cannot handle retrieve objects after update something.
// So we have to get all needed labels first.
labels := make([]*Label, 0, len(opts.LableIDs))
if err = e.In("id", opts.LableIDs).Find(&labels); err != nil {