summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjwijenbergh <jeroenwijenbergh@protonmail.com>2022-12-12 13:19:50 +0100
committerjwijenbergh <jeroenwijenbergh@protonmail.com>2022-12-12 13:26:52 +0100
commitb5c88a4e3772902cb43a48b4cbee860ca534e540 (patch)
tree7d79e07dace58a7ec1a38829dca56ca92b719a03
parent3ac1d35257b56cca92ad0eb7f4d18abb366cf105 (diff)
Client FSM: Fix fsm typo
-rw-r--r--client/fsm.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/fsm.go b/client/fsm.go
index aa3401b..76dee05 100644
--- a/client/fsm.go
+++ b/client/fsm.go
@@ -333,7 +333,7 @@ func (c *Client) goBackInternal() {
// GoBack transitions the FSM back to the previous UI state, for now this is always the NO_SERVER state.
func (c *Client) GoBack() error {
if c.InFSMState(StateDeregistered) {
- err := errors.Errorf("fms attempt going back from 'StateDeregistered'")
+ err := errors.Errorf("fsm attempt going back from 'StateDeregistered'")
c.logError(err)
return err
}