From 62e1d1c9527884647bd193257afba490ed320cfc Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Sun, 21 Aug 2016 13:29:29 +0900 Subject: [PATCH] Fix typo --- lib/nghttp2_helper.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/nghttp2_helper.c b/lib/nghttp2_helper.c index e133d0b0..415ef2d6 100644 --- a/lib/nghttp2_helper.c +++ b/lib/nghttp2_helper.c @@ -189,8 +189,8 @@ int nghttp2_adjust_local_window_size(int32_t *local_window_size_ptr, account it in *delta_ptr. */ *recv_window_size_ptr = recv_reduction_delta; } - /* recv_reduction_delta must be paied from *delta_ptr, since it - was added in window size reduction (see below). */ + /* recv_reduction_delta must be paid from *delta_ptr, since it was + added in window size reduction (see below). */ *delta_ptr -= recv_reduction_delta; return 0; @@ -238,7 +238,7 @@ int nghttp2_increase_local_window_size(int32_t *local_window_size_ptr, *recv_window_size_ptr += recv_reduction_delta; - /* recv_reduction_delta must be paied from *delta_ptr, since it was + /* recv_reduction_delta must be paid from *delta_ptr, since it was added in window size reduction (see below). */ *delta_ptr -= recv_reduction_delta;