diff --git a/docs/cli/snapshot.md b/docs/cli/snapshot.md index 8a7a6b96e5..376220749b 100644 --- a/docs/cli/snapshot.md +++ b/docs/cli/snapshot.md @@ -2,4 +2,4 @@ The ```snapshot``` command groups snapshot related actions: -- [```snapshot prune-state```](./snapshot_prune-state.md): Joins the local client to another remote peer. \ No newline at end of file +- [```snapshot prune-state```](./snapshot_prune-state.md): Prune state databases at the given datadir location. \ No newline at end of file diff --git a/internal/cli/snapshot.go b/internal/cli/snapshot.go index b48712d35f..3c8e4ec97d 100644 --- a/internal/cli/snapshot.go +++ b/internal/cli/snapshot.go @@ -25,7 +25,7 @@ func (a *SnapshotCommand) MarkDown() string { items := []string{ "# snapshot", "The ```snapshot``` command groups snapshot related actions:", - "- [```snapshot prune-state```](./snapshot_prune-state.md): Joins the local client to another remote peer.", + "- [```snapshot prune-state```](./snapshot_prune-state.md): Prune state databases at the given datadir location.", } return strings.Join(items, "\n\n")