# HG changeset patch # User Igor Sysoev # Date 1198947331 0 # Node ID 1739becf3f8316f2c902d1ba73d8177b26166d1e # Parent ba9e6e57f65d8a18e97d0249adf53d66caa89b1d fix comment diff --git a/src/event/ngx_event_timer.h b/src/event/ngx_event_timer.h --- 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 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);