From 2a449bd4b12545b904cfdd591fcf17afebf6a3c6 Mon Sep 17 00:00:00 2001 From: Bwko Date: Mon, 21 Nov 2016 20:08:21 +0100 Subject: Fix typos --- models/issue.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'models/issue.go') 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 { -- cgit v1.2.3