fix: typo in error message

pull/15952/head
David Norton 2020-03-11 15:28:45 -04:00
parent 92b9bdef14
commit b93bac197c
1 changed files with 1 additions and 1 deletions
cmd/influx_inspect

View File

@ -116,7 +116,7 @@ func (m *Main) Run(args ...string) error {
case "verify-tombstone":
name := tombstone.NewCommand()
if err := name.Run(args...); err != nil {
return fmt.Errorf("verify-seriesfile: %s", err)
return fmt.Errorf("verify-tombstone: %s", err)
}
default:
return fmt.Errorf(`unknown command "%s"`+"\n"+`Run 'influx_inspect help' for usage`, name)