reword changelog

This commit is contained in:
Rob Ede 2021-12-19 05:58:18 +00:00
parent 2e00776d5e
commit 75873924a2
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 3 additions and 2 deletions

View File

@ -1,8 +1,8 @@
# Changes # Changes
## Unreleased - 2021-xx-xx ## Unreleased - 2021-xx-xx
### Removed ### Changes
* `header::map::GetAll` iterator, its `Iterator::size_hint` method was wrongly implemented. Replaced with `std::slice::Iter`. [#2527] * `HeaderMap::get_all` now returns a `std::slice::Iter`. [#2527]
[#2527]: https://github.com/actix/actix-web/pull/2527 [#2527]: https://github.com/actix/actix-web/pull/2527

View File

@ -221,6 +221,7 @@ where
req_data, req_data,
) )
}; };
self.service.call(ServiceRequest::new(req, payload)) self.service.call(ServiceRequest::new(req, payload))
} }
} }