Remove UTF-8 characters from comment block
[kmrcl.git] / datetime.lisp
index 0e587ceac42f49bf37033ff2c68cb616136cfcd9..b3dbc1a47f895895e549064059d876202c0b5a74 100644 (file)
 
 (defun day-of-week (year month day)
   "Day of week calculation using Zeller's Congruence.
-Input: The year y, month m (1 ≤ m ≤ 12) and day d (1 ≤ d ≤ 31).
+Input: The year y, month m (1 <= m <= 12) and day d (1 <= d <= 31).
 Output: n - the day of the week (Sunday = 0, Saturday = 6)."
 
   (when (< month 3)