git: c537bf9d5903 - main - date: Capitalize seconds string in synopses

From: Mateusz Piotrowski <0mp_at_FreeBSD.org>
Date: Wed, 03 Nov 2021 13:09:42 UTC
The branch main has been updated by 0mp (doc, ports committer):

URL: https://cgit.FreeBSD.org/src/commit/?id=c537bf9d5903d0689321f83691341c93b5919172

commit c537bf9d5903d0689321f83691341c93b5919172
Author:     Mateusz Piotrowski <0mp@FreeBSD.org>
AuthorDate: 2021-11-03 11:59:49 +0000
Commit:     Mateusz Piotrowski <0mp@FreeBSD.org>
CommitDate: 2021-11-03 13:09:36 +0000

    date: Capitalize seconds string in synopses
    
    This makes it consistent with other date(1) implementations. Also, it
    feels more consistent since hours and minutes are already represented as
    HH and MM respectively.
    
    MFC after:      3 days
---
 bin/date/date.1 | 6 +++---
 bin/date/date.c | 2 +-
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/bin/date/date.1 b/bin/date/date.1
index 4e60d34c1f86..0aaae1614327 100644
--- a/bin/date/date.1
+++ b/bin/date/date.1
@@ -71,7 +71,7 @@
 .Ar mm Oc
 .Ar dd Oc
 .Ar HH
-.Oc Ar MM Op Cm \&. Ar ss
+.Oc Ar MM Op Cm \&. Ar SS
 .Sm on
 .Op Cm + Ns Ar output_fmt
 .\" Set time with the user-provided input format.
@@ -123,7 +123,7 @@ provided rather than using the default
 .Ar mm Oc
 .Ar dd Oc
 .Ar HH
-.Oc Ar MM Op Cm \&. Ar ss
+.Oc Ar MM Op Cm \&. Ar SS
 .Sm on
 format.
 Parsing is done using
@@ -330,7 +330,7 @@ Day, a number from 1 to 31.
 Hour, a number from 0 to 23.
 .It Ar MM
 Minutes, a number from 0 to 59.
-.It Ar ss
+.It Ar SS
 Seconds, a number from 0 to 60
 (59 plus a potential leap second).
 .El
diff --git a/bin/date/date.c b/bin/date/date.c
index 87f3dad28bd6..4dc5df0dccfc 100644
--- a/bin/date/date.c
+++ b/bin/date/date.c
@@ -387,7 +387,7 @@ usage(void)
 	    "            "
 	    "[-r filename|seconds] [-v[+|-]val[y|m|w|d|H|M|S]]",
 	    "            "
-	    "[[[[[[cc]yy]mm]dd]HH]MM[.ss] | new_date] [+output_fmt]"
+	    "[[[[[[cc]yy]mm]dd]HH]MM[.SS] | new_date] [+output_fmt]"
 	    );
 	exit(1);
 }