diff --git a/go/vt/workflow/manager_test.go b/go/vt/workflow/manager_test.go index 03192f45b7f..0620b882838 100644 --- a/go/vt/workflow/manager_test.go +++ b/go/vt/workflow/manager_test.go @@ -97,7 +97,7 @@ func TestManagerRestart(t *testing.T) { // Stop the manager. cancel() wg.Wait() - // Recreate the manager immitating restart. + // Recreate the manager imitating restart. m = NewManager(ts) // Make sure the workflow is still in the topo server. This diff --git a/go/vt/workflow/node_test.go b/go/vt/workflow/node_test.go index 8ac5a19da22..fec0b518b88 100644 --- a/go/vt/workflow/node_test.go +++ b/go/vt/workflow/node_test.go @@ -48,7 +48,7 @@ func (tw *testWorkflow) Action(ctx context.Context, path, name string) error { } // TestNodeManagerWithRoot unit tests basic NodeManager functionality -// wiht a single root node. +// with a single root node. func TestNodeManagerWithRoot(t *testing.T) { nodeManager := NewNodeManager() tw := &testWorkflow{} diff --git a/go/vt/workflow/resharding/workflow.go b/go/vt/workflow/resharding/workflow.go index 0061bdcab92..dedd4f7989b 100644 --- a/go/vt/workflow/resharding/workflow.go +++ b/go/vt/workflow/resharding/workflow.go @@ -378,7 +378,7 @@ func (hw *horizontalReshardingWorkflow) Run(ctx context.Context, manager *workfl if err := hw.runWorkflow(); err != nil { return err } - hw.setUIMessage(fmt.Sprintf("Horizontal Resharding is finished sucessfully.")) + hw.setUIMessage(fmt.Sprintf("Horizontal Resharding is finished successfully.")) return nil }