Skip to content

Commit ebe4c2d

Browse files
committed
STAC-24007: small fix
1 parent 66099ef commit ebe4c2d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

AGENTS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ sts context save --name ci-pipeline --url https://suse-observability.example.com
160160

161161
### Quality Checklist
162162
For every cobra.Command:
163-
- [ ] `Use` contains only the command name and positional arguments (no flags)
163+
- [ ] `Use` contains only the command name
164164
- [ ] `Short` starts with verb, no period, adds context beyond command name
165165
- [ ] `Long` adds value beyond `Short`, ends with period, explains domain concepts
166166
- [ ] `Example` has 2-3 realistic, copy-pasteable examples with lowercase comments

cmd/dashboard/dashboard_clone.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func DashboardCloneCommand(cli *di.Deps) *cobra.Command {
2929
sts dashboard clone --id 123456789 --name My Dashboard Copy
3030
3131
# clone a dashboard as private
32-
sts dashboard clone --identifier urn:stackpack:my-dashboard --name Private Copy --scope privateDashboard`,
32+
sts dashboard clone --identifier urn:stackpack:my-dashboard --name "Private Copy" --scope privateDashboard`,
3333
RunE: cli.CmdRunEWithApi(RunDashboardCloneCommand(args)),
3434
}
3535

0 commit comments

Comments
 (0)