]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
cal.c: fix typo ("fistt day") in help text, seize chance to improve it
authorBenno Schulenberg <bensberg@justemail.net>
Mon, 1 Aug 2011 18:41:12 +0000 (20:41 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 8 Aug 2011 09:58:42 +0000 (11:58 +0200)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
misc-utils/cal.c

index f46ef145c7caa6e88d516345f943a38986319f0b..39999cecf1909c98614f80d52215dfe1288f3885 100644 (file)
@@ -787,14 +787,14 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out)
                program_invocation_short_name);
 
        fprintf(out, _("\nOptions:\n"
-                      " -1, --one        single month\n"
-                      " -3, --three      previous, current and next month\n"
-                      " -s, --sunday     sunday as first day\n"
-                      " -m, --monday     monday as fistt day\n"
-                      " -j, --julian     julian dates\n"
-                      " -y, --year       current year\n"
-                      " -V, --version    output version information and exit\n"
-                      " -h, --help       display this help and exit\n\n"));
+                      " -1, --one        show only current month (default)\n"
+                      " -3, --three      show previous, current and next month\n"
+                      " -s, --sunday     Sunday as first day of week\n"
+                      " -m, --monday     Monday as first day of week\n"
+                      " -j, --julian     output Julian dates\n"
+                      " -y, --year       show whole current year\n"
+                      " -V, --version    display version information and exit\n"
+                      " -h, --help       display this help text and exit\n\n"));
 
        exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS);
 }