update changelog

This commit is contained in:
Rob Ede 2021-07-12 16:16:08 +01:00
parent 6bdfcf4a1d
commit a5a0e9a95a
No known key found for this signature in database
GPG Key ID: 97C636207D3EF933
2 changed files with 4 additions and 5 deletions

View File

@ -2,10 +2,9 @@
## Unreleased - 2021-xx-xx
### Added
* Re-export actix-http `Request` and `Response` in `dev` module. [#????]
* Re-export actix-service `ServiceFactory` in `dev` module. [#????]
* Re-export actix-service `ServiceFactory` in `dev` module. [#2325]
[#????]: https://github.com/actix/actix-web/pull/????
[#2325]: https://github.com/actix/actix-web/pull/2325
## 4.0.0-beta.8 - 2021-06-26

View File

@ -59,7 +59,7 @@ where
}
}
/// An HTTP request wrapper.
/// A service level request wrapper.
///
/// Allows mutable access to request's internal structures.
pub struct ServiceRequest {
@ -325,7 +325,7 @@ impl fmt::Debug for ServiceRequest {
}
}
/// An HTTP response wrapper.
/// A service level response wrapper.
pub struct ServiceResponse<B = AnyBody> {
request: HttpRequest,
response: HttpResponse<B>,