Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
coryb committed Oct 2, 2019
1 parent 997b6e1 commit a13b046
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jiradata/TransitionsFuncs.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
// or nil
func (t Transitions) Find(name string) *Transition {
name = strings.ToLower(name)
matches := []Transitions{}
matches := Transitions{}
for _, trans := range t {
if strings.ToLower(trans.Name) == name {
return trans
Expand Down

0 comments on commit a13b046

Please sign in to comment.