summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
}