mirror of
https://github.com/actix/actix-web.git
synced 2024-12-21 07:36:43 +00:00
awc: Fix typo on ResponseError documentation (#815)
* awc: Fix typo on ResponseError documentation Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> * http: Fix typo on ResponseError documentation Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> * http: Expand type names for openssl related errors documentation Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
This commit is contained in:
parent
337c2febe3
commit
6e00eef63a
2 changed files with 4 additions and 4 deletions
|
@ -137,7 +137,7 @@ impl<E: ResponseError> ResponseError for TimeoutError<E> {
|
|||
#[display(fmt = "UnknownError")]
|
||||
struct UnitError;
|
||||
|
||||
/// `InternalServerError` for `JsonError`
|
||||
/// `InternalServerError` for `UnitError`
|
||||
impl ResponseError for UnitError {}
|
||||
|
||||
/// `InternalServerError` for `JsonError`
|
||||
|
@ -150,11 +150,11 @@ impl ResponseError for FormError {}
|
|||
impl ResponseError for TimerError {}
|
||||
|
||||
#[cfg(feature = "ssl")]
|
||||
/// `InternalServerError` for `SslError`
|
||||
/// `InternalServerError` for `openssl::ssl::Error`
|
||||
impl ResponseError for openssl::ssl::Error {}
|
||||
|
||||
#[cfg(feature = "ssl")]
|
||||
/// `InternalServerError` for `SslError`
|
||||
/// `InternalServerError` for `openssl::ssl::HandshakeError`
|
||||
impl ResponseError for openssl::ssl::HandshakeError<tokio_tcp::TcpStream> {}
|
||||
|
||||
/// Return `BAD_REQUEST` for `de::value::Error`
|
||||
|
|
|
@ -65,7 +65,7 @@ pub enum JsonPayloadError {
|
|||
Payload(PayloadError),
|
||||
}
|
||||
|
||||
/// Return `InternlaServerError` for `JsonPayloadError`
|
||||
/// Return `InternalServerError` for `JsonPayloadError`
|
||||
impl ResponseError for JsonPayloadError {
|
||||
fn error_response(&self) -> Response {
|
||||
Response::new(StatusCode::INTERNAL_SERVER_ERROR)
|
||||
|
|
Loading…
Reference in a new issue