diff options
| author | Stefan Majewsky <stefan.majewsky@sap.com> | 2017-08-31 14:07:50 +0200 |
|---|---|---|
| committer | Stefan Majewsky <stefan.majewsky@sap.com> | 2017-08-31 14:07:50 +0200 |
| commit | f21e618d80c806c421b2072084d223b3780b6feb (patch) | |
| tree | 71ca8ab03030df73a877f3186b0a2ae39f2b1774 /pkg/rtree/index.go | |
| parent | b67fb0aa9a97ff89db50ab3c5c8d207414299524 (diff) | |
| download | gofu-f21e618d80c806c421b2072084d223b3780b6feb.tar.gz | |
remove unnecessary parentheses
Diffstat (limited to 'pkg/rtree/index.go')
| -rw-r--r-- | pkg/rtree/index.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/rtree/index.go b/pkg/rtree/index.go index 88e8b2d..ad53bbd 100644 --- a/pkg/rtree/index.go +++ b/pkg/rtree/index.go @@ -162,7 +162,7 @@ func (i *Index) Rebuild() error { } else { selection, err = cli.Interface.Query( fmt.Sprintf("repository %s has been deleted", filepath.Join(RootPath, repo.CheckoutPath)), - cli.Choice{Return: "r", Shortcut: 'r', Text: "(r)estore from " + strings.Join(remoteURLs, " and ")}, + cli.Choice{Return: "r", Shortcut: 'r', Text: "restore from " + strings.Join(remoteURLs, " and ")}, cli.Choice{Return: "d", Shortcut: 'd', Text: "delete from index"}, cli.Choice{Return: "s", Shortcut: 's', Text: "skip"}, ) |
