# HG changeset patch # User Valentin Bartenev # Date 1445976995 -10800 # Node ID 66ee1c5cb6aac2e8494201f158a872720e18e3cd # Parent 86b5f146b121af382a96bcb0e0e4afe6ebc0a908 HTTP/2: fixed spelling. diff --git a/src/http/v2/ngx_http_v2.c b/src/http/v2/ngx_http_v2.c --- a/src/http/v2/ngx_http_v2.c +++ b/src/http/v2/ngx_http_v2.c @@ -1664,7 +1664,7 @@ ngx_http_v2_state_process_header(ngx_htt h->key.len = header->name.len; h->key.data = header->name.data; - /* TODO Optimization: precalculate hash and hadnler for indexed headers. */ + /* TODO Optimization: precalculate hash and handler for indexed headers. */ h->hash = ngx_hash_key(h->key.data, h->key.len); h->value.len = header->value.len; @@ -1818,7 +1818,7 @@ ngx_http_v2_state_priority(ngx_http_v2_c if (depend == h2c->state.sid) { ngx_log_error(NGX_LOG_INFO, h2c->connection->log, 0, "client sent PRIORITY frame for stream %ui " - "with incorrect dependancy", h2c->state.sid); + "with incorrect dependency", h2c->state.sid); node = ngx_http_v2_get_node_by_id(h2c, h2c->state.sid, 0);