From c0855a3e611036e52d272138ee62eafb9336a985 Mon Sep 17 00:00:00 2001 From: Navaneethan <59121948+FalseDev@users.noreply.github.com> Date: Sat, 15 Apr 2023 00:38:42 +0530 Subject: [PATCH] Fix typo in `cs stop` command: `Stoppping` -> `Stopping` (#7318) --- pkg/cmd/codespace/stop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/cmd/codespace/stop.go b/pkg/cmd/codespace/stop.go index e95fd3231..c2b675033 100644 --- a/pkg/cmd/codespace/stop.go +++ b/pkg/cmd/codespace/stop.go @@ -97,7 +97,7 @@ func (a *App) StopCodespace(ctx context.Context, opts *stopOptions) error { } } - err := a.RunWithProgress("Stoppping codespace", func() (err error) { + err := a.RunWithProgress("Stopping codespace", func() (err error) { err = a.apiClient.StopCodespace(ctx, codespaceName, opts.orgName, ownerName) return })