diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-13 11:13:51 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-13 11:13:51 +0200 |
commit | 19f43a83c3925ed3d05a4874dcbc84cbb454ea6c (patch) | |
tree | 3a1d595a7da57a89f46c595e46aafadaaa198425 /bug/operation.go | |
parent | 27c5ea5b5b57887f51d5700398ee283dc191fff9 (diff) | |
download | git-bug-19f43a83c3925ed3d05a4874dcbc84cbb454ea6c.tar.gz |
bug: proper int baked enum for merge result status instead of a string
Diffstat (limited to 'bug/operation.go')
-rw-r--r-- | bug/operation.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bug/operation.go b/bug/operation.go index 5d42a175..6a8aa0cd 100644 --- a/bug/operation.go +++ b/bug/operation.go @@ -5,7 +5,7 @@ import ( "time" ) -// OperationType is an identifier +// OperationType is an operation type identifier type OperationType int const ( |