Skip to content

Commit

Permalink
[agroal#386] Help screen in pgagroal-cli has dots on newlines
Browse files Browse the repository at this point in the history
There were a couple of dots after a "\n" in the help screen.
Removed the dots, since they can be confused in the output with the
command argument.

Close agroal#386
  • Loading branch information
fluca1978 authored and jesperpedersen committed Oct 26, 2023
1 parent d3a92c7 commit e2dcb10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ usage(void)
printf(" The subcommand <action> can be:\n");
printf(" - 'reload' to issue a configuration reload;\n");
printf(" - 'get' to obtain information about a runtime configuration value;\n");
printf(" conf get <parameter_name>\n.");
printf(" conf get <parameter_name>\n");
printf(" - 'set' to modify a configuration value;\n");
printf(" conf set <parameter_name> <parameter_value>\n.");
printf(" conf set <parameter_name> <parameter_value>\n");
printf(" clear <what> Resets either the Prometheus statistics or the specified server.\n");
printf(" <what> can be\n");
printf(" - 'server' (default) followed by a server name\n");
Expand Down

0 comments on commit e2dcb10

Please sign in to comment.