1
0
Fork 0
forked from forgejo/forgejo

Merge pull request #246 from Bwko/fix/typo

Fix typos
This commit is contained in:
Thomas Boerger 2016-11-25 12:54:57 +01:00 committed by GitHub
commit e9c6053b86
3 changed files with 8 additions and 8 deletions

View file

@ -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 {