Fix typo in cs stop command: Stoppping -> Stopping (#7318)

This commit is contained in:
Navaneethan 2023-04-15 00:38:42 +05:30 committed by GitHub
parent 83322104b7
commit c0855a3e61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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
})