1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-11-10 02:49:33 +00:00

Fix typo in httpresponse.rs

This commit is contained in:
Matthijs Brobbel 2018-05-29 18:11:10 +02:00 committed by GitHub
parent fb582a6bca
commit 6b43fc7068
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -86,7 +86,7 @@ impl HttpResponse {
HttpResponsePool::with_body(status, body.into())
}
/// Constructs a error response
/// Constructs an error response
#[inline]
pub fn from_error(error: Error) -> HttpResponse {
let mut resp = error.cause().error_response();