From 8aa75cf82c402012fb23713103d8641a90fd071d Mon Sep 17 00:00:00 2001 From: vx-clutch Date: Mon, 21 Jul 2025 19:40:15 -0400 Subject: [PATCH] save --- yait/main.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yait/main.c b/yait/main.c index 6589dcc..aa7e30f 100644 --- a/yait/main.c +++ b/yait/main.c @@ -30,7 +30,7 @@ int create_project (format_t fmt); * @param description The option description (right side) */ #define print_option(option, description) \ - printf (" %-20s %-20s\n", option, description) + printf (" %-20s %-20s\n", option, description) void usage (int status) @@ -50,8 +50,8 @@ usage (int status) print_option ("--git", "Initialize git repository"); print_option ("--GNU", "Adds stand GNU argument parsing to your project"); - printf (" --help\tdisplay the help text and exit\n"); - printf (" --version\toutput version information and exit\n"); + printf (" --help\tdisplay the help text and exit\n"); + printf (" --version\toutput version information and exit\n"); } }