Skip to content

Commit 508f636

Browse files
committed
Don't put dot after description in options
1 parent 6c385a9 commit 508f636

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flag.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ void flag_print_options(FILE *stream)
251251
Flag *flag = &c->flags[i];
252252

253253
fprintf(stream, " -%s\n", flag->name);
254-
fprintf(stream, " %s.\n", flag->desc);
254+
fprintf(stream, " %s\n", flag->desc);
255255
switch (c->flags[i].type) {
256256
case FLAG_BOOL:
257257
fprintf(stream, " Default: %s\n", flag->def.as_bool ? "true" : "false");

0 commit comments

Comments
 (0)