summaryrefslogtreecommitdiffstats
path: root/date.c
diff options
context:
space:
mode:
authorOndřej Bílka <neleai@seznam.cz>2013-07-23 14:07:04 +0200
committerOndřej Bílka <neleai@seznam.cz>2013-07-23 14:07:04 +0200
commitfd1b65cbb2a0d6c1b52b30e3b9010ead734c0cc1 (patch)
tree03c14f393279ccbd185179cc38522126fb1725ab /date.c
parent3e4064102fde1d92c501a19174b9a250dd99408c (diff)
fix typos in comments
Diffstat (limited to 'date.c')
-rw-r--r--date.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/date.c b/date.c
index 0cd83122..c173fe65 100644
--- a/date.c
+++ b/date.c
@@ -77,7 +77,7 @@ time_t mutt_mktime (struct tm *t, int local)
g = AccumDaysPerMonth [t->tm_mon % 12];
/* The leap years are 1972 and every 4. year until 2096,
- * but this algoritm will fail after year 2099 */
+ * but this algorithm will fail after year 2099 */
g += t->tm_mday;
if ((t->tm_year % 4) || t->tm_mon < 2)
g--;