summaryrefslogtreecommitdiffstats
path: root/date.c
diff options
context:
space:
mode:
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--;