Skip to content

Commit

Permalink
fixes formatting error
Browse files Browse the repository at this point in the history
  • Loading branch information
dbrian57 committed Dec 29, 2023
1 parent fbe8c07 commit 1cfa9c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/load_balancers.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ With the load-balancer command, you can list, create, or delete load balancers,

cmdLoadBalancerList := CmdBuilder(cmd, RunLoadBalancerList, "list", "List load balancers", "Retrieves a list of the load balancers on your account, including the following information for each:\n\n"+lbDetail, Writer,
aliasOpt("ls"), displayerType(&displayers.LoadBalancer{}))
cmdLoadBalancerList.Example = `The following example lists all of the load balancers on your account and used the --format flag to return only each load balancer's ID, IP address, and status: doctl compute load-balancer list --format "ID,IP,Status"`
cmdLoadBalancerList.Example = `The following example lists all of the load balancers on your account and used the ` + "`" + `--format` + "`" + ` flag to return only each load balancer's ID, IP address, and status: doctl compute load-balancer list --format "ID,IP,Status"`

cmdRunRecordDelete := CmdBuilder(cmd, RunLoadBalancerDelete, "delete <load-balancer-id>",
"Permanently delete a load balancer", `Permanently deletes the specified load balancer and disassociates any Droplets assigned to it. This is irreversible.`, Writer, aliasOpt("d", "rm"))
Expand Down

0 comments on commit 1cfa9c8

Please sign in to comment.