Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
coryb committed Oct 1, 2019
1 parent d3b3c03 commit 807ca76
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 807ca76

Please sign in to comment.