Skip to content

Commit ab8c5ca

Browse files
committed
review changes 2
1 parent 1e12c5c commit ab8c5ca

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

internal/cmd/network-area/routingtable/route/create/create.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ func NewCmd(params *types.CmdParams) *cobra.Command {
8888
routingTableLabel = model.RoutingTableId
8989
}
9090

91-
prompt := fmt.Sprintf("Are you sure you want to create a route for routing-table with id %q?", routingTableLabel)
91+
prompt := fmt.Sprintf("Are you sure you want to create a route for routing-table %q?", routingTableLabel)
9292
err = params.Printer.PromptForConfirmation(prompt)
9393
if err != nil {
9494
return err

internal/cmd/network-area/routingtable/route/list/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ func outputResult(p *print.Printer, outputFormat string, routes []iaas.Route, or
144144

145145
return p.OutputResult(outputFormat, routes, func() error {
146146
if len(routes) == 0 {
147-
p.Outputf("No routes found for routing-table %q in organization %q \n", routeTableId, orgId)
147+
p.Outputf("No routes found for routing-table %q in organization %q\n", routeTableId, orgId)
148148
return nil
149149
}
150150

0 commit comments

Comments
 (0)