diff options
Diffstat (limited to 'coreutils/cal.c')
-rw-r--r-- | coreutils/cal.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/cal.c b/coreutils/cal.c index cd7be0d..93c5692 100644 --- a/coreutils/cal.c +++ b/coreutils/cal.c @@ -65,7 +65,7 @@ static const char sep1752[] = { static int julian; -/* leap year -- account for gregorian reformation in 1752 */ +/* leap year -- account for Gregorian reformation in 1752 */ #define leap_year(yr) \ ((yr) <= 1752 ? !((yr) % 4) : \ (!((yr) % 4) && ((yr) % 100)) || !((yr) % 400)) |