comparison src/core/ngx_times.c @ 4499:778ef9c3fd2d

Fixed spelling in single-line comments.
author Ruslan Ermilov <ru@nginx.com>
date Tue, 28 Feb 2012 11:31:05 +0000
parents d620f497c50f
children 67653855682e
comparison
equal deleted inserted replaced
4498:569ea17767bf 4499:778ef9c3fd2d
285 285
286 n = (ngx_uint_t) t; 286 n = (ngx_uint_t) t;
287 287
288 days = n / 86400; 288 days = n / 86400;
289 289
290 /* Jaunary 1, 1970 was Thursday */ 290 /* January 1, 1970 was Thursday */
291 291
292 wday = (4 + days) % 7; 292 wday = (4 + days) % 7;
293 293
294 n %= 86400; 294 n %= 86400;
295 hour = n / 3600; 295 hour = n / 3600;