aboutsummaryrefslogtreecommitdiff
path: root/models/issue.go
diff options
context:
space:
mode:
authorSeongAhJo <seongside@gmail.com>2016-12-21 17:33:30 +0900
committer无闻 <u@gogs.io>2016-12-21 03:33:30 -0500
commitbab051a8c17324e616d2fd649f1de9f36992ecaa (patch)
treeef6a3617bf5cfeaefb668f8040e41fbf4b9354b2 /models/issue.go
parentad6de46ce4cc207ec392abd85cf3fbcd53c61a33 (diff)
Fix Typo Errors (#3885)
* Fix typos * 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 55d3253a..6dfb4717 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 {