From 8990caca2ab18017b7c931b3da167d83209aa016 Mon Sep 17 00:00:00 2001 From: iceman1001 Date: Fri, 9 Oct 2020 18:11:27 +0200 Subject: [PATCH] text --- client/src/cmddata.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/cmddata.c b/client/src/cmddata.c index 9cb7ca2a5..7900da4b1 100644 --- a/client/src/cmddata.c +++ b/client/src/cmddata.c @@ -1004,14 +1004,14 @@ static int CmdDecimate(const char *Cmd) { CLIParserContext *ctx; CLIParserInit(&ctx, "data decimate", - "Decimate samples in the grapbuf. Good for PSK\n", + "Performs decimation, by reducing samples N times in the grapbuf. Good for PSK\n", "data decimate\n" "data decimate 4" ); void *argtable[] = { arg_param_begin, - arg_int0(NULL, NULL, "", "number to decimate, 2,"), + arg_int0(NULL, NULL, "", "factor to reduce sample set (default 2)"), arg_param_end }; CLIExecWithReturn(ctx, Cmd, argtable, true); @@ -1036,14 +1036,14 @@ static int CmdDecimate(const char *Cmd) { static int CmdUndecimate(const char *Cmd) { CLIParserContext *ctx; CLIParserInit(&ctx, "data undecimate", - "This function performs un-decimation, by repeating each sample N times in the graphbuf", + "Performs un-decimation, by repeating each sample N times in the graphbuf", "data undecimate\n" "data undecimate 4\n" ); void *argtable[] = { arg_param_begin, - arg_int0(NULL, NULL, "", "The number of times to repeat each sample (default 2)"), + arg_int0(NULL, NULL, "", "factor to repeat each sample (default 2)"), arg_param_end }; CLIExecWithReturn(ctx, Cmd, argtable, true);