- Remove unnecessary warning from libbb and move bb_wfopen_input near bb_wfopen
[oweals/busybox.git] / coreutils / cal.c
index cd7be0d30d87c195a75226e56b14528cd560a314..93c5692d0dd21043b20aca63cd0d5ace6cc159a7 100644 (file)
@@ -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))