From 511278b66aa7871093845a6beab23ea2a0e4cb66 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=98ystein=20Olsen?= Date: Mon, 13 Feb 2017 16:07:29 +0100 Subject: [PATCH] Fix wrong description of rebuild-index command in help text --- src/cmds/restic/cmd_rebuild_index.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cmds/restic/cmd_rebuild_index.go b/src/cmds/restic/cmd_rebuild_index.go index 2dfac08f8..e4a6c680a 100644 --- a/src/cmds/restic/cmd_rebuild_index.go +++ b/src/cmds/restic/cmd_rebuild_index.go @@ -10,8 +10,8 @@ var cmdRebuildIndex = &cobra.Command{ Use: "rebuild-index [flags]", Short: "build a new index file", Long: ` -The "rebuild-index" command creates a new index by combining the index files -into a new one. +The "rebuild-index" command creates a new index based on the pack files in the +repository. `, RunE: func(cmd *cobra.Command, args []string) error { return runRebuildIndex(globalOptions)