Skip to content

Commit 6c20099

Browse files
authored
add missing newlines
1 parent 23351fb commit 6c20099

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/favorite.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func (r *RootCmd) favorite() *clibase.Cmd {
2929
if err := client.FavoriteWorkspace(inv.Context(), ws.ID); err != nil {
3030
return xerrors.Errorf("favorite workspace: %w", err)
3131
}
32-
_, _ = fmt.Fprintf(inv.Stdout, "Workspace %q added to favorites.", ws.Name)
32+
_, _ = fmt.Fprintf(inv.Stdout, "Workspace %q added to favorites.\n", ws.Name)
3333
return nil
3434
},
3535
}
@@ -56,7 +56,7 @@ func (r *RootCmd) unfavorite() *clibase.Cmd {
5656
if err := client.UnfavoriteWorkspace(inv.Context(), ws.ID); err != nil {
5757
return xerrors.Errorf("unfavorite workspace: %w", err)
5858
}
59-
_, _ = fmt.Fprintf(inv.Stdout, "Workspace %q removed from favorites.", ws.Name)
59+
_, _ = fmt.Fprintf(inv.Stdout, "Workspace %q removed from favorites.\n", ws.Name)
6060
return nil
6161
},
6262
}

0 commit comments

Comments
 (0)