From edbd030bfc23fbba29d38b259d6180f524207978 Mon Sep 17 00:00:00 2001 From: Eduardo Silva Date: Thu, 2 Oct 2025 20:01:27 +0100 Subject: [PATCH] Fixed the explanationString of the replay command --- cmd/replay.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/cmd/replay.go b/cmd/replay.go index 96af5f9..838c266 100644 --- a/cmd/replay.go +++ b/cmd/replay.go @@ -22,10 +22,9 @@ func replayAction(cmd *cobra.Command, args []string) { var replayCmd = &cobra.Command{ Use: "replay", Short: "replay -i ", - Long: `replay will store the data from the given UDP server to the - filepath given by -i`, - Args: nil, - Run: replayAction, + Long: `replay will replay the data on the given filepath on a UDP server`, + Args: nil, + Run: replayAction, } func init() {