diff options
Diffstat (limited to 'defaultBehavior.go')
| -rw-r--r-- | defaultBehavior.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/defaultBehavior.go b/defaultBehavior.go index e7d3c52..f404ddc 100644 --- a/defaultBehavior.go +++ b/defaultBehavior.go @@ -23,13 +23,13 @@ func doDefaultBehavior() (string, error) { // got to the end with nothing to do (?) found := findWorkRepos() if found.Len() == 0 { - return "you have no repos with patches (list them all with --show)", nil + return "you have no repos with patches (list them all with 'show')", nil } found.SortNamespace() // footer := fmt.Sprintf("findWorkRepos() found %d", found.Len()) // return "doDefaultBehavior() :" + footer, nil footer := me.forge.PrintDefaultTB(found) - return "repos with unsaved changes: (list them all with --show) " + footer, nil + return "repos with unsaved changes: (list them all with 'show') " + footer, nil } if me.forge.IsModeMaster() { |
