diff options
| author | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 14:09:28 +0100 |
|---|---|---|
| committer | jwijenbergh <jeroenwijenbergh@protonmail.com> | 2022-11-28 14:12:48 +0100 |
| commit | 59e6ccd051452162fab852a25deb4f0f8a9e22b2 (patch) | |
| tree | f4d8168b5b696f0eae26dbfc0e6cae514cbe65e7 /client/fsm.go | |
| parent | 279c0de75629de5868c3ac1b3272a2850e6b62f7 (diff) | |
Refactor: Fix revive linter errors by deleting redundant prefixes
Diffstat (limited to 'client/fsm.go')
| -rw-r--r-- | client/fsm.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/client/fsm.go b/client/fsm.go index 2245630..88d71f2 100644 --- a/client/fsm.go +++ b/client/fsm.go @@ -10,10 +10,10 @@ import ( ) type ( - FSMStateID = fsm.FSMStateID - FSMStates = fsm.FSMStates - FSMState = fsm.FSMState - FSMTransition = fsm.FSMTransition + FSMStateID = fsm.StateID + FSMStates = fsm.States + FSMState = fsm.State + FSMTransition = fsm.Transition ) const ( |
