summaryrefslogtreecommitdiffstats
path: root/models/issue.go
diff options
context:
space:
mode:
authorBwko <bouwko@gmail.com>2016-11-21 20:08:21 +0100
committerBwko <bouwko@gmail.com>2016-11-21 20:08:21 +0100
commit2a449bd4b12545b904cfdd591fcf17afebf6a3c6 (patch)
tree0e3956e85e9cc1b83b218418ba86f3901a946ce7 /models/issue.go
parentb2cce12980f6f86cf5f68e70af4588add6cc2452 (diff)
downloadgitea-2a449bd4b12545b904cfdd591fcf17afebf6a3c6.tar.gz
gitea-2a449bd4b12545b904cfdd591fcf17afebf6a3c6.zip
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 09ecb2e6d3..00221b1add 100644
--- a/models/issue.go
+++ b/models/issue.go
@@ -650,7 +650,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 {