diff options
author | Igor Sysoev <igor@sysoev.ru> | 2007-12-29 16:55:31 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2007-12-29 16:55:31 +0000 |
commit | b548e13cdf612e82758b06a28c7426dfcd1e4b70 (patch) | |
tree | 63aa97e6c30ed7e3cae65e08478cbc1b35d95c1d /src | |
parent | 2d028f891035189c5c790aeae8895fb1e6af116f (diff) | |
download | nginx-b548e13cdf612e82758b06a28c7426dfcd1e4b70.tar.gz nginx-b548e13cdf612e82758b06a28c7426dfcd1e4b70.zip |
fix comment
Diffstat (limited to 'src')
-rw-r--r-- | src/event/ngx_event_timer.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/event/ngx_event_timer.h b/src/event/ngx_event_timer.h index ce32ce937..61ffeaefe 100644 --- a/src/event/ngx_event_timer.h +++ b/src/event/ngx_event_timer.h @@ -65,9 +65,9 @@ ngx_event_add_timer(ngx_event_t *ev, ngx_msec_t timer) if (ev->timer_set) { /* - * Use the previous timer value if a difference between them is less - * then NGX_TIMER_LAZY_DELAY milliseconds. It allows to minimize - * the rbtree operations for the fast connections. + * Use a previous timer value if difference between it and a new + * value is less than NGX_TIMER_LAZY_DELAY milliseconds: this allows + * to minimize the rbtree operations for fast connections. */ diff = (ngx_msec_int_t) (key - ev->timer.key); |