diff --git a/job.go b/job.go index ee70be0..78a99b5 100644 --- a/job.go +++ b/job.go @@ -145,9 +145,7 @@ func (j *Job) Loc(loc *time.Location) *Job { // they don't impact the functionality of the job. func (j *Job) Tag(t string, others ...string) { j.tags = append(j.tags, t) - for _, tag := range others { - j.tags = append(j.tags, tag) - } + j.tags = append(j.tags, others...) } // Untag removes a tag from a job